summaryrefslogtreecommitdiffstats
path: root/boot-env/preboot/preboot-scripts/dialog.functions
diff options
context:
space:
mode:
authorSebastian Schmelzer2009-06-18 20:06:52 +0200
committerSebastian Schmelzer2009-06-18 20:06:52 +0200
commitd64b0b37d63d36b1c01613f31466856ed14f80c7 (patch)
treea5faba3c9242f38cc57869796e87f8f024181a5e /boot-env/preboot/preboot-scripts/dialog.functions
parentUpdated the syslinux components to HPAs new version (3.82) ... (diff)
downloadcore-d64b0b37d63d36b1c01613f31466856ed14f80c7.tar.gz
core-d64b0b37d63d36b1c01613f31466856ed14f80c7.tar.xz
core-d64b0b37d63d36b1c01613f31466856ed14f80c7.zip
Makefile: remove tabs
new preboot test version git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2974 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'boot-env/preboot/preboot-scripts/dialog.functions')
-rw-r--r--boot-env/preboot/preboot-scripts/dialog.functions24
1 files changed, 24 insertions, 0 deletions
diff --git a/boot-env/preboot/preboot-scripts/dialog.functions b/boot-env/preboot/preboot-scripts/dialog.functions
index a9e76bdd..7c6dd784 100644
--- a/boot-env/preboot/preboot-scripts/dialog.functions
+++ b/boot-env/preboot/preboot-scripts/dialog.functions
@@ -79,3 +79,27 @@ ddownload () {
echo 100 | dialog --gauge "$dl_title" $DIALOG_HEIGHT $DIALOG_WIDTH;
}
+
+
+
+menu_firststart () {
+ while [ "x$(cat result)" = "x" ] ; do
+ dialog --menu "OpenSLX" 30 60 22 \
+ 01 "Kiosk" \
+ 02 "Kiosk Setup" \
+ 03 "Custom System" \
+ 2>result
+ done
+}
+
+menu_oldconfig () {
+ oldconf=$1;
+ while [ "x$(cat result)" = "x" ] ; do
+ dialog --menu "OpenSLX" 30 60 22 \
+ 01 "Kiosk" \
+ 02 "Kiosk Setup" \
+ 03 "Custom System" \
+ 04 "Custom System"
+ 2>result
+ done
+}