Comments
Patch
@@ -3,16 +3,16 @@ DESCRIPTION = "Initscript to manage gadget Ethernet"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe"
-PR = "r2"
+PR = "r3"
SRC_URI = "file://usb-gether \
file://COPYING.GPL"
S = "${WORKDIR}"
do_install() {
- install -d ${D}/etc
- install -d ${D}/etc/init.d
- install usb-gether ${D}/etc/init.d
+ install -d ${D}${sysconfdir}
+ install -d ${D}${sysconfdir}/init.d
+ install usb-gether ${D}${sysconfdir}/init.d
}
inherit update-rc.d allarch
It is considered good practice to use the build system provided variables instead of directly specify hardcoded paths. Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org> --- meta/recipes-bsp/usbinit/usbinit.bb | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)