summaryrefslogtreecommitdiff
blob: a4f1b30b8411ca2ad5b6f1adfc49972b5511cfcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
$opts=explode(' ', $this->get_opt('options'));
if (in_array('timezone', $opts))
	$this->select('timezone', 'timezone', 'Timezone', get_timezones());
if (in_array('dev-manager', $opts))
	$this->select('dev-manager', 'dev-manager', '/dev Manager', array('udev' => 'udev', 'static-dev' => 'Static /dev'));
$profile=new sql_gentoo_profile($this->get_opt('profile'));
if (strlen($pkgsets=$this->get_opt('pkgsets'))) {
	foreach (explode(' ', $this->get_opt('pkgsets')) as $pkgset) {
		$pkgset=new sql_gentoo_pkgset($pkgset);
		$pkgs=array();
		foreach (explode("\n", $pkgset->packages) as $pkg) {
			if ($obj=sql_gentoo_package::from_atom($pkg, $profile)) {
				$array=$obj->to_array();
				$pkgs[$pkg]="$pkg: {$array['desc']}";
			}
		}
		$this->checkbox_array('pkgset-'.$pkgset->id, 'pkgset-'.$pkgset->id, $pkgset->name, $pkgs);
	}
}
// 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'
));
?>