2009-05-20 16:42:31 +00:00
|
|
|
#!/bin/sh
|
2009-05-20 15:13:01 +00:00
|
|
|
|
|
|
|
###################################################
|
|
|
|
# Start by setting up the console to work as a user
|
|
|
|
# expects
|
|
|
|
###################################################
|
|
|
|
exec >/dev/console 2>&1
|
|
|
|
export TERM=linux
|
|
|
|
export PS1='initramfs-test:\w\$ '
|
|
|
|
stty sane
|
|
|
|
|
|
|
|
|
|
|
|
##################################################
|
|
|
|
# Start udev up
|
|
|
|
##################################################
|
|
|
|
start_udev
|
|
|
|
|
|
|
|
##################################################
|
|
|
|
# Load all the modules based on
|
|
|
|
# /etc/module_load_list
|
|
|
|
##################################################
|
2009-05-20 16:42:31 +00:00
|
|
|
load_modules
|
2009-05-20 15:13:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##################################################
|
|
|
|
# Reboot the system to get back to production
|
|
|
|
##################################################
|
|
|
|
reboot -f
|