aboutsummaryrefslogtreecommitdiffstats
path: root/packages/slugos-init/files/boot/flash
blob: e0bcebc9b88e8ddb8a4f04388a816db4aa988128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# boot from the current (flash) root partition
# nothing need be done, make the power led flash
# amber to indicate runlevel S
/sbin/leds -A '!gr'
exec /sbin/init
# fallback if /sbin/init has been deleted (bad!)
# flashing amber/red - failed early boot
# disk lights flashing: failed in flash boot!
/sbin/leds +A '!g12'
exec <>/dev/console >&0 2>&0
exec /sbin/sulogin
exec /bin/sh
exit 1