- Timestamp:
- Nov 23, 2006, 5:38:40 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/mindi
r965 r966 52 52 # if this is set to 'no', then the image will be created automatically 53 53 54 USE_OWN_KERNEL=" no"54 USE_OWN_KERNEL="yes" 55 55 # If set to "no", you will be prompted for whether or not 56 56 # you want to use your own kernel, or the supplied default. … … 1537 1537 data_dev=$3 1538 1538 1539 echo -en "Would you like to create boot+data floppy disks now (y/ n) ?"1539 echo -en "Would you like to create boot+data floppy disks now (y/[n]) ?" 1540 1540 read i 1541 1541 [ "$i" != "y" ] && [ "$i" != "Y" ] && return … … 1563 1563 local i old_pwd 1564 1564 if [ "$PROMPT_MAKE_CD_IMAGE" = "yes" ] && [ ! "`DidMondoCallMe`" ] ; then 1565 echo -en "Shall I make a bootable CD image? (y/ n) "1565 echo -en "Shall I make a bootable CD image? (y/[n]) " 1566 1566 read i 1567 1567 [ "$i" != "y" ] && [ "$i" != "Y" ] && return 0 … … 2925 2925 if [ "$kernelpath" = "" ] ; then 2926 2926 [ "`DidMondoCallMe`" ] && Die "Please use -k <path> to specify kernel." 2927 if [ $USE_OWN_KERNEL != "yes" ]; then 2928 echo -en "Do you want to use your own kernel to build the boot disk (y/n) ?" 2929 read ch 2930 if [ "$ch" != "n" ] && [ "$ch" != "N" ] ; then 2931 USE_OWN_KERNEL="yes" 2932 fi 2927 echo -en "Do you want to use your own kernel to build the boot disk ([y]/n) ?" 2928 read ch 2929 if [ "$ch" != "n" ] && [ "$ch" != "N" ] ; then 2930 USE_OWN_KERNEL="yes" 2933 2931 fi 2934 2932 if [ "$USE_OWN_KERNEL" = "yes" ]; then … … 2944 2942 fi 2945 2943 if [ ! "`DidMondoCallMe`" ] ; then 2946 echo -en "Would you like to use LILO (instead of syslinux)\nfor your boot CD/floppies (y/ n) ?"2944 echo -en "Would you like to use LILO (instead of syslinux)\nfor your boot CD/floppies (y/[n]) ?" 2947 2945 read ch 2948 if [ "$ch" != "n" ] && [ "$ch" != "N" ] ; then 2946 if [ "$ch" != "y" ] && [ "$ch" != "Y" ] ; then 2947 USE_LILO=no 2948 else 2949 2949 USE_LILO=yes 2950 else2951 USE_LILO=no2952 2950 fi 2953 2951 fi
Note:
See TracChangeset
for help on using the changeset viewer.