Remove ld.so.preload and policy-rc.d changes
This commit is contained in:
parent
4c7980fa1e
commit
c430f618d0
6 changed files with 0 additions and 29 deletions
|
@ -1,13 +1,5 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
if [ -e ${ROOTFS_DIR}/etc/ld.so.preload ]; then
|
|
||||||
mv ${ROOTFS_DIR}/etc/ld.so.preload ${ROOTFS_DIR}/etc/ld.so.preload.disabled
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -e ${ROOTFS_DIR}/usr/sbin/policy-rc.d ]; then
|
|
||||||
install -m 744 files/policy-rc.d ${ROOTFS_DIR}/usr/sbin/
|
|
||||||
fi
|
|
||||||
|
|
||||||
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
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
exit 101
|
|
|
@ -13,13 +13,7 @@ if [ -d ${ROOTFS_DIR}/home/pi/.config ]; then
|
||||||
fi
|
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/sbin/policy-rc.d
|
|
||||||
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/apt/sources.list~
|
rm -f ${ROOTFS_DIR}/etc/apt/sources.list~
|
||||||
rm -f ${ROOTFS_DIR}/etc/apt/trusted.gpg~
|
rm -f ${ROOTFS_DIR}/etc/apt/trusted.gpg~
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
install -d ${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d
|
install -d ${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d
|
||||||
install -m 644 files/noclear.conf ${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d/noclear.conf
|
install -m 644 files/noclear.conf ${ROOTFS_DIR}/etc/systemd/system/getty@tty1.service.d/noclear.conf
|
||||||
install -m 744 files/policy-rc.d ${ROOTFS_DIR}/usr/sbin/policy-rc.d #TODO: Necessary in systemd?
|
|
||||||
install -v -m 644 files/fstab ${ROOTFS_DIR}/etc/fstab
|
install -v -m 644 files/fstab ${ROOTFS_DIR}/etc/fstab
|
||||||
|
|
||||||
on_chroot << EOF
|
on_chroot << EOF
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
exit 101
|
|
|
@ -22,14 +22,6 @@ EOF
|
||||||
if [ "${USE_QEMU}" = "1" ]; then
|
if [ "${USE_QEMU}" = "1" ]; then
|
||||||
echo "enter QEMU mode"
|
echo "enter QEMU mode"
|
||||||
install -m 644 files/90-qemu.rules ${ROOTFS_DIR}/etc/udev/rules.d/
|
install -m 644 files/90-qemu.rules ${ROOTFS_DIR}/etc/udev/rules.d/
|
||||||
if [ -e ${ROOTFS_DIR}/etc/ld.so.preload.disabled ]; then
|
|
||||||
rm ${ROOTFS_DIR}/etc/ld.so.preload.disabled
|
|
||||||
touch ${ROOTFS_DIR}/etc/ld.so.preload.disabled
|
|
||||||
fi
|
|
||||||
if [ -e ${ROOTFS_DIR}/etc/ld.so.preload ]; then
|
|
||||||
rm ${ROOTFS_DIR}/etc/ld.so.preload
|
|
||||||
touch ${ROOTFS_DIR}/etc/ld.so.preload
|
|
||||||
fi
|
|
||||||
on_chroot << EOF
|
on_chroot << EOF
|
||||||
systemctl disable resize2fs_once
|
systemctl disable resize2fs_once
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in a new issue