init.sh 222 Bytes
Newer Older
longpanda's avatar
update  
longpanda committed
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

cat /ventoy/modlist | while read line; do
    if [ -e /ventoy/drivers/${line}.ko ]; then
        insmod /ventoy/drivers/${line}.ko
    fi
done

sleep 5

echo "sh /ventoy/profile.sh" >> /root/.profile
exec /init