summaryrefslogtreecommitdiff
blob: b5edf9179434e9c44521860ecb10341993e8ea32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
$opts=explode(' ', $this->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'
));
?>