diff --git a/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1-r12.ebuild b/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1-r13.ebuild similarity index 100% rename from sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1-r12.ebuild rename to sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1-r13.ebuild diff --git a/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1.ebuild b/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1.ebuild index 3e8f60192b..b27342d7e6 100644 --- a/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/sys-kernel/bootengine/bootengine-0.0.1.ebuild @@ -32,18 +32,18 @@ src_install() { pkg_postinst() { mount -t proc proc ${ROOT}/proc || die mount --bind /dev ${ROOT}/dev || die - mount --rbind /sys ${ROOT}/sys || die - mount --rbind /run ${ROOT}/run || die + mount --bind /sys ${ROOT}/sys || die + mount --bind /run ${ROOT}/run || die # The keyboard tables are all still being included, which we need to # figure out how to remove someday. chroot ${ROOT} dracut --force --no-kernel --nofscks \ --fstab --no-compress /tmp/bootengine.cpio || die - umount --recursive ${ROOT}/proc || die + umount ${ROOT}/proc || die umount ${ROOT}/dev || die - umount --recursive ${ROOT}/sys || die - umount --recursive ${ROOT}/run || die + umount ${ROOT}/sys || die + umount ${ROOT}/run || die # as we are not in src_install() insinto and doins do not work here, so # manually copy the file around