diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-11 00:29:05 +0100 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-11 00:29:05 +0100 |
commit | 8dd515327ef2b3705634b1450ff9082d5641f2d2 (patch) | |
tree | cf2f3daf5e38380cc70f43b75da5610a6772d887 | |
parent | 848ad458069539348eebde5ebbd04f86c90c63a7 (diff) |
manual partitioning fix + todo update
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | src/core/libs/lib-ui-interactive.sh | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -16,6 +16,8 @@ General: * go over all files and clean up * fix to use $var_UI_TYPE where needed * write the ui functions for asking questions etc for both cli and dialog and port all code to use it. +* by now we should be able to shift dia/cli in all procedures and everything +should keep working fine Specifically: * core/interactive bug: boot space 15 -> too large should be too small @@ -35,7 +37,6 @@ BETA PHASE: try to get fifa on the (beta) installcd as an experimental, alternat fail. i tried killall dhcpd, killall -9 dhcpd first but that didn't help: it can't kill the process or something... - PRODUCTION PHASE: be the primary installer. deprecate /arch/setup and /arch/quickinst * fix everything even more * bribe devs diff --git a/src/core/libs/lib-ui-interactive.sh b/src/core/libs/lib-ui-interactive.sh index b494dba..27b7fef 100644 --- a/src/core/libs/lib-ui-interactive.sh +++ b/src/core/libs/lib-ui-interactive.sh @@ -11,7 +11,7 @@ interactive_partition() { DISC="" while true; do # Prompt the user with a list of known disks - ask_option no "Select the disk you want to partition (select DONE when finished)" 14 55 7 $DISCS || return 1 + ask_option no "Select the disk you want to partition (select DONE when finished)" $DISCS || return 1 DISC=$ANSWER_OPTION if [ "$DISC" = "OTHER" ]; then _dia_DIALOG --inputbox "Enter the full path to the device you wish to partition" 8 65 "/dev/sda" 2>$ANSWER || return 1 |