a lot: profiles, some more help strings. partial: exceptions instead of exit()
Signed-off-by: InsanePrawn <insane.prawny@gmail.com>
This commit is contained in:
parent
e705af21f5
commit
f09deaa9a5
9 changed files with 190 additions and 106 deletions
25
constants.py
25
constants.py
|
@ -1,10 +1,10 @@
|
|||
FASTBOOT = 'fastboot'
|
||||
|
||||
ROOTFS = 'rootfs'
|
||||
BOOTIMG = 'bootimg'
|
||||
LK2ND = 'lk2nd'
|
||||
QHYPSTUB = 'qhypstub'
|
||||
|
||||
FLASH_PARTS = {
|
||||
'ROOTFS': 'rootfs',
|
||||
'BOOTIMG': 'bootimg',
|
||||
'LK2ND': 'lk2nd',
|
||||
'QHYPSTUB': 'qhypstub',
|
||||
}
|
||||
EMMC = 'emmc'
|
||||
EMMCFILE = 'emmc-file'
|
||||
MICROSD = 'microsd'
|
||||
|
@ -28,9 +28,16 @@ DEVICES = {
|
|||
}
|
||||
|
||||
FLAVOURS = {
|
||||
'barebone': [],
|
||||
'debug-shell': ['hook-debug-shell'],
|
||||
'gnome': ['gnome'],
|
||||
'barebone': {
|
||||
'packages': []
|
||||
},
|
||||
'debug-shell': {
|
||||
'packages': ['hook-debug-shell']
|
||||
},
|
||||
'gnome': {
|
||||
'packages': ['gnome', 'archlinux-appstream-data', 'gnome-software-packagekit-plugin'],
|
||||
'post_cmds': ['systemctl enable gdm']
|
||||
},
|
||||
}
|
||||
|
||||
REPOSITORIES = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue