init.sh 241 Bytes
Newer Older
longpanda's avatar
update  
longpanda committed
1
2
3
4
5
6
7
8
9
10
11
#!/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
longpanda's avatar
longpanda committed
12
13

ln -s /lib /lib64
longpanda's avatar
update  
longpanda committed
14
exec /init