parent
cc13b249d5
commit
739ce24c47
@ -0,0 +1,2 @@ |
||||
linux/build/ |
||||
syslinux/ |
||||
@ -0,0 +1,14 @@ |
||||
#!/bin/bash |
||||
|
||||
sleep 1 |
||||
|
||||
dialog --menu " " 10 80 5 \ |
||||
recv_fsa "Receive and write fsarchiver's archive (to /dev/sda1)" \ |
||||
recv_sfd "Receive and write sfdisk's partition table" \ |
||||
shell "Run root shell" 2>/tmp/menu \ |
||||
|
||||
if [ "$?" != "0" ]; then CHOICE="shell"; else CHOICE=$(cat /tmp/menu); fi |
||||
|
||||
if ! [ -f "$CHOICE" ]; then CHOICE="shell"; fi |
||||
|
||||
bash $(dirname "$0")/$CHOICE.sh |
||||
@ -0,0 +1,4 @@ |
||||
#!/bin/bash |
||||
|
||||
clear |
||||
bash |
||||
Loading…
Reference in new issue