mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
T3965: arm: build script: inheritence in flavor_configs and bootloader options
This commit is contained in:
parent
2264c8a812
commit
9b511bf61f
@ -8,6 +8,7 @@
|
|||||||
"kernel_version": "5.10.76",
|
"kernel_version": "5.10.76",
|
||||||
"kernel_flavor": "amd64-vyos",
|
"kernel_flavor": "amd64-vyos",
|
||||||
"release_train": "sagitta",
|
"release_train": "sagitta",
|
||||||
|
"bootloaders": "syslinux,grub-efi",
|
||||||
"additional_repositories": [
|
"additional_repositories": [
|
||||||
"deb [arch=amd64] https://repo.saltproject.io/py3/debian/10/amd64/3003 buster main",
|
"deb [arch=amd64] https://repo.saltproject.io/py3/debian/10/amd64/3003 buster main",
|
||||||
"deb [arch=amd64] http://repo.powerdns.com/debian bullseye-rec-45 main"
|
"deb [arch=amd64] http://repo.powerdns.com/debian bullseye-rec-45 main"
|
||||||
|
|||||||
6
data/generic-arm64.json
Normal file
6
data/generic-arm64.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"inherit_from": "data/defaults.json",
|
||||||
|
"architecture": "arm64",
|
||||||
|
"kernel_flavor": "v8-arm64-vyos",
|
||||||
|
"bootloaders": "grub-efi"
|
||||||
|
}
|
||||||
@ -48,14 +48,27 @@ def get_validator(optdict, name):
|
|||||||
except KeyError:
|
except KeyError:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
def load_config(filename):
|
||||||
|
with open(filename, 'r') as f:
|
||||||
|
print(f'Loading {filename}')
|
||||||
|
this_config = json.load(f)
|
||||||
|
|
||||||
|
if not 'inherit_from' in this_config:
|
||||||
|
print(f'No inheritance detected')
|
||||||
|
return this_config
|
||||||
|
|
||||||
|
inherited_config = load_config(this_config['inherit_from'])
|
||||||
|
del this_config['inherit_from']
|
||||||
|
inherited_config.update(this_config)
|
||||||
|
return inherited_config
|
||||||
|
|
||||||
|
|
||||||
# Load the build flavor file
|
# Load the build flavor file
|
||||||
build_flavor = os.getenv('VYOS_BUILD_FLAVOR')
|
build_flavor = os.getenv('VYOS_BUILD_FLAVOR')
|
||||||
if build_flavor is None:
|
if build_flavor is None:
|
||||||
build_flavor = defaults.DEFAULT_BUILD_FLAVOR
|
build_flavor = defaults.DEFAULT_BUILD_FLAVOR
|
||||||
try:
|
try:
|
||||||
with open(build_flavor, 'r') as f:
|
build_defaults = load_config(build_flavor)
|
||||||
build_defaults = json.load(f)
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("Failed to open the build flavor file {0}: {1}".format(build_flavor, e))
|
print("Failed to open the build flavor file {0}: {1}".format(build_flavor, e))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
@ -143,6 +156,7 @@ if env_check_retval > 0:
|
|||||||
|
|
||||||
args['kernel_version'] = build_defaults['kernel_version']
|
args['kernel_version'] = build_defaults['kernel_version']
|
||||||
args['kernel_flavor'] = build_defaults['kernel_flavor']
|
args['kernel_flavor'] = build_defaults['kernel_flavor']
|
||||||
|
args['bootloaders'] = build_defaults['bootloaders']
|
||||||
|
|
||||||
|
|
||||||
# Save to file
|
# Save to file
|
||||||
|
|||||||
@ -39,7 +39,7 @@ lb config noauto \
|
|||||||
--bootappend-live-failsafe "live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal console=ttyS0,115200 console=tty0 net.ifnames=0 biosdevname=0" \
|
--bootappend-live-failsafe "live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal console=ttyS0,115200 console=tty0 net.ifnames=0 biosdevname=0" \
|
||||||
--linux-flavours {{kernel_flavor}} \
|
--linux-flavours {{kernel_flavor}} \
|
||||||
--linux-packages linux-image-{{kernel_version}} \
|
--linux-packages linux-image-{{kernel_version}} \
|
||||||
--bootloader syslinux,grub-efi \
|
--bootloader {{bootloaders}} \
|
||||||
--binary-images iso-hybrid \
|
--binary-images iso-hybrid \
|
||||||
--checksums 'sha256 md5' \
|
--checksums 'sha256 md5' \
|
||||||
--debian-installer none \
|
--debian-installer none \
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user