Skip to content

Commit 54503f5

Browse files
committed
version 0.002 some fixes
1 parent f0c9cf0 commit 54503f5

4 files changed

Lines changed: 12 additions & 7 deletions

File tree

menu

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
############################################################################
1212

13-
version=0.001
13+
version=0.002
1414

1515

1616
if [ ! -e menu ]
@@ -141,10 +141,7 @@ do
141141
echo
142142
echo " NOTE: Other options may not be shown in this menu *until* a specific"
143143
echo " action above is selected or a specific working folder is created."
144-
echo " (A working folder is created with Option 1 of the kitchen main menu!)"
145-
echo
146-
echo " e.g. You won't see the option to re-pack a boot.img unless you unpack"
147-
echo " the boot.img first! "
144+
echo " (A working folder is created automatically at first time kitchen boots up!)"
148145
echo
149146
echo -n "? "
150147

scripts/build_boot_img_choice

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,22 @@ do
2424
echo "g = Build boot.img using gzip ramdisk"
2525
echo "l = Build boot.img using lzma ramdisk"
2626
echo
27+
echo "x = Return to main menu"
28+
echo
2729
echo -n "? "
2830

2931
read enterLetter
3032

3133
if [ "$enterLetter" == "g" ]
3234
then
33-
scripts/build_boot_img_gzipramfs
35+
scripts/build_boot_img_gzip
3436

3537
elif [ "$enterLetter" == "l" ]
3638
then
37-
scripts/build_boot_img_lzmaramfs
39+
scripts/build_boot_img_lzma
40+
41+
elif [ "$enterLetter" == "x" ]
42+
then
43+
./menu
3844
fi
3945
done
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,4 +352,5 @@ else
352352
exit_code=0
353353
fi
354354

355+
./scripts/press_enter
355356
./menu
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,4 +352,5 @@ else
352352
exit_code=0
353353
fi
354354

355+
./scripts/press_enter
355356
./menu

0 commit comments

Comments
 (0)