diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2018-11-30 20:43:36 -0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-11-30 17:12:36 -0800 |
commit | f29268ee21106dfd9f578088745c43aa5e6ed3a3 (patch) | |
tree | 853ad416cd3f3056b59e94f55a0b361879d92e52 /meta-oe/recipes-support/libusbgx/libusbgx-config.bb | |
parent | ebc7b9e20ac22f6f2ad373621917f53e8a9af81c (diff) | |
download | meta-openembedded-f29268ee21106dfd9f578088745c43aa5e6ed3a3.tar.gz |
libusbgx: Add recipe
The libusbgx allow easier use and setup of USB gadgets. To easy
integration on different systems a libusbgx-config package is provided
so it can be used to start and enable respective USB gadget schema.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libusbgx/libusbgx-config.bb')
-rw-r--r-- | meta-oe/recipes-support/libusbgx/libusbgx-config.bb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libusbgx/libusbgx-config.bb b/meta-oe/recipes-support/libusbgx/libusbgx-config.bb new file mode 100644 index 000000000..b269e33c4 --- /dev/null +++ b/meta-oe/recipes-support/libusbgx/libusbgx-config.bb | |||
@@ -0,0 +1,12 @@ | |||
1 | SUMMARY = "USB Gadget Configuration Files" | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
4 | |||
5 | SRC_URI = "file://usbgx.default" | ||
6 | |||
7 | do_configure[noexec] = "1" | ||
8 | do_compile[noexec] = "1" | ||
9 | |||
10 | do_install() { | ||
11 | install -Dm 0644 ${WORKDIR}/usbgx.default ${D}${sysconfdir}/default/usbgx | ||
12 | } | ||