summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2009-03-08 16:38:23 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2009-03-08 16:38:23 +0100
commit330f99c5b2148f0a04ea919ce9de2f867f8cbb36 (patch)
tree5af5789c28c1e0527f66438be2ac0849f3e5f2e9
parent84f3b27c7a0c48f33d2d5fad33645f34c3bc4e7d (diff)
todo updates (some todos are moved to flyspray)
-rw-r--r--TODO5
-rw-r--r--src/core/procedures/interactive4
2 files changed, 4 insertions, 5 deletions
diff --git a/TODO b/TODO
index f58f885..6a67520 100644
--- a/TODO
+++ b/TODO
@@ -2,15 +2,14 @@ See also the FIXME's and TODO's in the code.
CURRENT ISSUES:
-* date/time setting stuff (see ML thread) hangs at select timezone?
-* interactive_autoprepare : size in B instead of MiB
-* grub sedding sometimes does, and sometimes doesn't work. default config remains (eg /dev/hda3)
+* differentiate between framework and installer in src/aif.sh, some things should be in base
* check everywhere that if users cancels something, we return 1, empty string behavior etc
* dm_crypt unlock at boot is in qwerty.
* after unlocking dm_crypt, FS check fails (reiserfs, must try other)
* find a way to make _cli_ask_checklist still userfriendly for long lists.. maybe we should just propose/ask to use dia if the list is too long
* sometimes we call die_error but we go back to the menu.. eg when we run as non-root and can't log
* automatically configure grub for dm_crypt and lvm
+* fs_params in partition editor: do we really need to show them? isn't this where we store our "own" stuff?
* move "/tmp/pacman.conf" to runtime directory and variablize everywhere
* a nice way to be able to "inject" functions/logic without:
* needing to redefine phases with only 1 entry different (duplicate code is not nice, less maintainable etc)
diff --git a/src/core/procedures/interactive b/src/core/procedures/interactive
index ec9185a..ca9e489 100644
--- a/src/core/procedures/interactive
+++ b/src/core/procedures/interactive
@@ -96,7 +96,7 @@ mainmenu()
select_source_extras_menu ()
{
while true; do
- ask_option no "FTP Installation" 'Make sure the network is ok before continuing the installer' required \
+ ask_option no "FTP Installation" 'Make sure the network is ok before continuing the installer' required \ #TODO: display the "make sure network is okay" in a better way
"1" "$worker_runtime_network_title" \
"2" "$worker_select_mirror_title" \
"3" "Return to Main Menu"
@@ -148,7 +148,7 @@ worker_prepare_disks()
[ -n "$NEXTITEM" ] && default="$NEXTITEM"
ask_option $default "Prepare Hard Drive" '' required \
- "1" "Auto-Prepare (erases the ENTIRE hard drive and sets up partitions and filesystems)" \
+ "1" "Auto-Prepare (erases the ENTIRE hard drive and sets up partitions and filesystems)" \ #TODO: inform user (using dialog's --item-help or so) that this uses 1 disk and uses it in a "fairly regular" (though somewhat customizable) manner.
"2" "Partition Hard Drives" \
"3" "Configure block devices, filesystems and mountpoints" \
"4" "Rollback last filesystem changes$rollbackstr" \