From 5634227db6e7264c908a582685770b88f6ba69e5 Mon Sep 17 00:00:00 2001 From: Eudyptula Date: Wed, 15 Jul 2009 19:42:53 -0400 Subject: Divided gentoo_portage backend into several parts; Added another config step to choose which options to offer next; Added timezone selection; Fixed pkglist script; Little fixes --- frontend/modules/gentoo/step4.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 frontend/modules/gentoo/step4.php (limited to 'frontend/modules/gentoo/step4.php') diff --git a/frontend/modules/gentoo/step4.php b/frontend/modules/gentoo/step4.php new file mode 100644 index 0000000..b5edf91 --- /dev/null +++ b/frontend/modules/gentoo/step4.php @@ -0,0 +1,15 @@ +get_opt('options')); +if (in_array('timezone', $opts)) + $this->select('timezone', 'timezone', 'Timezone', get_timezones()); +// TODO This shouldn't be a step at all, it should be in wizard.php to choose between bundlers +// TODO This shouldn't be part of configurations, except possibly a default value. It should be for builds +$this->select('bundler', 'bundler', 'Image type', array( + 'tgz' => 'Tar/Gzip', + 'tbz2' => 'Tar/Bzip2', + 'installcd' => 'Installer CD with Tar/Bzip2', + 'livecd' => 'LiveCD', + 'ext2' => 'ext2', + 'jffs2' => 'jffs2' +)); +?> -- cgit v1.2.3-65-gdbad