Disable ld.so.preload while building
This commit is contained in:
parent
afeea46a39
commit
0cdec86026
3 changed files with 13 additions and 0 deletions
|
@ -3,3 +3,7 @@
|
||||||
if [ ! -x "${ROOTFS_DIR}/usr/bin/qemu-arm-static" ]; then
|
if [ ! -x "${ROOTFS_DIR}/usr/bin/qemu-arm-static" ]; then
|
||||||
cp /usr/bin/qemu-arm-static "${ROOTFS_DIR}/usr/bin/"
|
cp /usr/bin/qemu-arm-static "${ROOTFS_DIR}/usr/bin/"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -e "${ROOTFS_DIR}/etc/ld.so.preload" ]; then
|
||||||
|
mv "${ROOTFS_DIR}/etc/ld.so.preload" "${ROOTFS_DIR}/etc/ld.so.preload.disabled"
|
||||||
|
fi
|
||||||
|
|
|
@ -15,6 +15,12 @@ fi
|
||||||
rm -f "${ROOTFS_DIR}/etc/apt/apt.conf.d/51cache"
|
rm -f "${ROOTFS_DIR}/etc/apt/apt.conf.d/51cache"
|
||||||
rm -f "${ROOTFS_DIR}/usr/bin/qemu-arm-static"
|
rm -f "${ROOTFS_DIR}/usr/bin/qemu-arm-static"
|
||||||
|
|
||||||
|
if [ "${USE_QEMU}" != "1" ]; then
|
||||||
|
if [ -e "${ROOTFS_DIR}/etc/ld.so.preload.disabled" ]; then
|
||||||
|
mv "${ROOTFS_DIR}/etc/ld.so.preload.disabled" "${ROOTFS_DIR}/etc/ld.so.preload"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
rm -f "${ROOTFS_DIR}/etc/network/interfaces.dpkg-old"
|
rm -f "${ROOTFS_DIR}/etc/network/interfaces.dpkg-old"
|
||||||
|
|
||||||
rm -f "${ROOTFS_DIR}/etc/apt/sources.list~"
|
rm -f "${ROOTFS_DIR}/etc/apt/sources.list~"
|
||||||
|
|
3
stage2/00-copies-and-fills/02-run.sh
Executable file
3
stage2/00-copies-and-fills/02-run.sh
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash -e
|
||||||
|
|
||||||
|
mv "${ROOTFS_DIR}/etc/ld.so.preload" "${ROOTFS_DIR}/etc/ld.so.preload.disabled"
|
Loading…
Reference in a new issue