]> glassweightruler.freedombox.rocks Git - Ventoy.git/blob - LiveCD/VTOY/ventoy/profile.sh
1.1.07 release
[Ventoy.git] / LiveCD / VTOY / ventoy / profile.sh
1 #!/bin/sh
2
3 cd /
4 tar -xf ventoy.tar.gz
5
6 cd /ventoy
7 mkdir mnt
8 for i in $(ls tcz/*.tcz); do
9 mount $i mnt
10 cp -a mnt/* /
11 umount mnt
12 done
13
14 ldconfig /usr/local/lib /usr/lib /lib
15
16 #workaround for swapon
17 rm -f /sbin/swapon
18 echo '#!/bin/sh' > /sbin/swapon
19 chmod +x /sbin/swapon
20
21 sh /ventoy/ventoy.sh
22