Code Sample |
title DSL with XFree86 kernel /boot/linux-24 root=/dev/hda4 splash=silent vga=791 initrd /boot/initrd.splash |
Quote |
title DSL with XFree86 kernel /boot/linux-24 root=/dev/hda4 splash=silent vga=791 initrd /boot/initrd.splash |
Quote |
progressbar() { if [ $# != 1 ] then echo "Usage: progressbar {progress}" exit 1 fi echo "show $(( 65534 * $1 / 100 ))" > /proc/splash } |
Quote |
progressbar 40 |
Quote (curaga @ May 30 2007,03:20) | ||
Then see the order of init scripts (ls /etc/rcsysinit.d) they are numbered from 0 to 100. Obviously low number is used first, then higher. At the end of each script add
|