-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathTODO
More file actions
50 lines (32 loc) · 1.32 KB
/
TODO
File metadata and controls
50 lines (32 loc) · 1.32 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
live-magic TODO
===============
(Wizard)
* Add simple package handling to wizard?
* Add boolean for whether to use mirror as LB_MIRROR_BINARY mirror?
(General)
* Translations
(Expert mode)
* File selectors (preseed, splash screen) (gtk.Entry with 'Select' button)
* Tasks - task list sufficiently static? Probably needs its own page?
* Dependencies between options. For example, it doesn't make sense
to display the LB_ISO_AUTHOR etc if the ISO binary type is not
selected.
depends = [
'common/LB_ISO_APPLICATION': lambda: 'iso' in self.model.binary.LB_BINARY_IMAGES,
'common/LB_GRUB_SPLASH': lambda: self.model.binary.LB_BOOTLOADER == 'grub',
]
"Hidden" depends - eg. LB_BOOTSTRAP_KEYRING only makes sense when using
debootstrap (cdebootstrap does not have this option afaict).
(API)
* Add build() to LiveHelperConfiguration?
Would allow saner build scripts:
#!/usr/bin/env python
from DebianLive import Config
lb = Config('.')
lb.binary.LB_BINARY_IMAGES = ['iso', 'usb-hdd', 'net']
for pkg_list in ['gnome', 'kde', 'standard', 'rescue']:
lb.common.LB_PACKAGES_LISTS = pkg_list
result = lb.build(save=True)
print type(result), result
# Would need some way of saving logs.
# Reliable method of getting locations of resulting ISOs.