Skip to content

Commit

Permalink
version 0.002 some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lopicl committed Aug 30, 2013
1 parent f0c9cf0 commit 54503f5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
7 changes: 2 additions & 5 deletions menu
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
############################################################################

version=0.001
version=0.002


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

Expand Down
10 changes: 8 additions & 2 deletions scripts/build_boot_img_choice
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,22 @@ do
echo "g = Build boot.img using gzip ramdisk"
echo "l = Build boot.img using lzma ramdisk"
echo
echo "x = Return to main menu"
echo
echo -n "? "

read enterLetter

if [ "$enterLetter" == "g" ]
then
scripts/build_boot_img_gzipramfs
scripts/build_boot_img_gzip

elif [ "$enterLetter" == "l" ]
then
scripts/build_boot_img_lzmaramfs
scripts/build_boot_img_lzma

elif [ "$enterLetter" == "x" ]
then
./menu
fi
done
Original file line number Diff line number Diff line change
Expand Up @@ -352,4 +352,5 @@ else
exit_code=0
fi

./scripts/press_enter
./menu
Original file line number Diff line number Diff line change
Expand Up @@ -352,4 +352,5 @@ else
exit_code=0
fi

./scripts/press_enter
./menu

0 comments on commit 54503f5

Please sign in to comment.