/lib/live/boot/9990-aaa-fixme.sh is in live-boot 1:20151213.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | #!/bin/sh
PATH="/root/usr/bin:/root/usr/sbin:/root/bin:/root/sbin:/usr/bin:/usr/sbin:/bin:/sbin"
export PATH
echo "/root/lib" >> /etc/ld.so.conf
echo "/root/usr/lib" >> /etc/ld.so.conf
mountpoint="/live/medium"
alt_mountpoint="/media"
LIVE_MEDIA_PATH="live"
HOSTNAME="host"
mkdir -p "${mountpoint}"
mkdir -p /var/lib/live/boot
# Create /etc/mtab for debug purpose and future syncs
mkdir -p /etc
touch /etc/mtab
if [ ! -x "/bin/fstype" ]
then
# klibc not in path -> not in initramfs
PATH="${PATH}:/usr/lib/klibc/bin"
export PATH
fi
custom_overlay_label="persistence"
persistence_list="persistence.conf"
|