Browse Source

* Use seen flag rather than old isdefault flag. (The isdefault() function

just has an unfortunate name, it is really unconnected with these
     flags..)

r569
keep-around/c8703c509368e1805e513d61f98a9d17d2cdd9cc
Joey Hess 22 years ago
parent
commit
4460d9287e
  1. 2
      TODO
  2. 8
      debian/changelog
  3. 2
      main-menu.c

2
TODO

@ -13,8 +13,6 @@
- Detect whenever any menu item fails, and leave
linear mode. (BEST)
* Update to new debconf stuff -- no isdefault flag setting needed; use seen
flag instead. Waiting for cdebconf to support it..
* Figure out how to handle configuring only one virtual package (pick off
of a menu?) if the menu item depends on a virtual package.
Aj:

8
debian/changelog

@ -1,3 +1,11 @@
main-menu (0.009) unstable; urgency=low
* Use seen flag rather than old isdefault flag. (The isdefault() function
just has an unfortunate name, it is really unconnected with these
flags..)
-- Joey Hess <joeyh@debian.org> Fri, 4 May 2001 18:43:55 -0400
main-menu (0.008) unstable; urgency=low
* Patch from Romain BEAUGRAND <rbeaugrand@easter-eggs.com> to order()

2
main-menu.c

@ -157,7 +157,7 @@ struct package_t *show_main_menu(struct package_t *packages) {
debconf->command(debconf, "TITLE", "Debian Installer Main Menu", NULL);
if (menudefault)
debconf->command(debconf, "SET", MAIN_MENU, menudefault, NULL);
debconf->command(debconf, "FSET", MAIN_MENU, "isdefault", "true", NULL);
debconf->command(debconf, "FSET", MAIN_MENU, "seen", "false", NULL);
debconf->command(debconf, "SUBST", MAIN_MENU, "MENU", menutext, NULL);
debconf->command(debconf, "INPUT medium", MAIN_MENU, NULL);
debconf->command(debconf, "GO", NULL);

Loading…
Cancel
Save