This commit is contained in:
Serge Schneider
2016-05-05 19:43:33 +01:00
parent 19a1b94d2a
commit bdca3e3b48
14 changed files with 201 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
#!/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
cp /usr/bin/qemu-arm-static ${ROOTFS_DIR}/usr/bin/
fi

View File

@@ -0,0 +1,2 @@
#!/bin/sh
exit 101