remove extra slashes in paths

This commit is contained in:
Grzegorz Kowalski 2024-03-11 20:18:39 +01:00
parent 4755714d61
commit cbdeccc175
2 changed files with 4 additions and 4 deletions

View File

@ -23,11 +23,11 @@ addtask mkimage after do_compile before do_install
do_compile[noexec] = "1" do_compile[noexec] = "1"
do_install () { do_install () {
install -D -m 644 ${B}/boot.scr ${D}/boot/boot.scr install -D -m 644 ${B}/boot.scr ${D}boot/boot.scr
} }
do_deploy () { do_deploy () {
install -D -m 644 ${D}/boot/boot.scr ${DEPLOYDIR}/boot.scr-${MACHINE}-${PV}-${PR} install -D -m 644 ${D}boot/boot.scr ${DEPLOYDIR}/boot.scr-${MACHINE}-${PV}-${PR}
cd ${DEPLOYDIR} cd ${DEPLOYDIR}
rm -f boot.scr rm -f boot.scr

View File

@ -16,6 +16,6 @@ EXTRA_OEMAKE = "ARCH=${ARCH}"
EXTRA_OEMAKE += "KSRC=${STAGING_KERNEL_BUILDDIR}" EXTRA_OEMAKE += "KSRC=${STAGING_KERNEL_BUILDDIR}"
do_install() { do_install() {
install -d ${D}/lib/modules/${KERNEL_VERSION} install -d ${D}lib/modules/${KERNEL_VERSION}
install -m 0755 ${B}/8189es.ko ${D}/lib/modules/${KERNEL_VERSION}/8192eu.ko install -m 0755 ${B}/8189es.ko ${D}lib/modules/${KERNEL_VERSION}/8192eu.ko
} }