mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-06-25 18:08:22 -04:00
constants.py: get rid of now unused FLAVOURS
This commit is contained in:
parent
707efe6bbd
commit
18eba2dffd
1 changed files with 0 additions and 38 deletions
38
constants.py
38
constants.py
|
@ -1,5 +1,4 @@
|
||||||
from typing_extensions import TypeAlias
|
from typing_extensions import TypeAlias
|
||||||
from typing import TypedDict
|
|
||||||
|
|
||||||
FASTBOOT = 'fastboot'
|
FASTBOOT = 'fastboot'
|
||||||
FLASH_PARTS = {
|
FLASH_PARTS = {
|
||||||
|
@ -30,45 +29,8 @@ BASE_PACKAGES: list[str] = [
|
||||||
'vim',
|
'vim',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
class Flavour(TypedDict, total=False):
|
|
||||||
packages: list[str]
|
|
||||||
post_cmds: list[str]
|
|
||||||
size: int
|
|
||||||
|
|
||||||
|
|
||||||
FLAVOURS: dict[str, Flavour] = {
|
|
||||||
'barebone': {
|
|
||||||
'packages': [],
|
|
||||||
},
|
|
||||||
'debug-shell': {
|
|
||||||
'packages': ['hook-debug-shell'],
|
|
||||||
},
|
|
||||||
'gnome': {
|
|
||||||
'packages': ['gnome', 'archlinux-appstream-data', 'gnome-software-packagekit-plugin'],
|
|
||||||
'post_cmds': ['systemctl enable gdm'],
|
|
||||||
'size': 8,
|
|
||||||
},
|
|
||||||
'phosh': {
|
|
||||||
'packages': [
|
|
||||||
'phosh',
|
|
||||||
'phosh-osk-stub', # temporary replacement for 'squeekboard',
|
|
||||||
'gnome-control-center',
|
|
||||||
'gnome-software',
|
|
||||||
'gnome-software-packagekit-plugin',
|
|
||||||
'archlinux-appstream-data',
|
|
||||||
'gnome-initial-setup',
|
|
||||||
'kgx',
|
|
||||||
'iio-sensor-proxy',
|
|
||||||
],
|
|
||||||
'post_cmds': ['systemctl enable phosh'],
|
|
||||||
'size': 5,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
POST_CMDS = ['kupfer-config apply']
|
POST_CMDS = ['kupfer-config apply']
|
||||||
|
|
||||||
|
|
||||||
REPOSITORIES = [
|
REPOSITORIES = [
|
||||||
'boot',
|
'boot',
|
||||||
'cross',
|
'cross',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue