WIP: Add scaffolding for arch-agnostic base-distro handling

This commit is contained in:
InsanePrawn 2021-09-17 17:56:01 +02:00
parent 044b721edd
commit 232df81901
3 changed files with 105 additions and 1 deletions

View file

@ -41,3 +41,14 @@ REPOSITORIES = [
'linux',
'main',
]
ARCHES = [
'x86_64',
'aarch64',
]
BASE_DISTROS: {
'x86_64': {
'': '',
},
}