From 56b4cc7398e816c6370b72756328e54b9d5cfab0 Mon Sep 17 00:00:00 2001 From: Josef Holzmayr Date: Mon, 15 Jul 2024 09:56:04 +0200 Subject: [PATCH] chore: kas: add beaglebone-uboot config The BeagleBone Black can also use the mender-uboot feature instead of mender-grub. Add a build configuration to reflect that and autobuild it to catch eventual build failures. Changelog: Title Ticket: None Signed-off-by: Josef Holzmayr --- .github/workflows/build.yml | 3 ++- kas/beaglebone-uboot.yml | 9 +++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 kas/beaglebone-uboot.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 019c3a46..dd93fc88 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,7 +48,8 @@ jobs: qemux86-64, vexpress-qemu, vexpress-qemu-flash, - x86-virtual + x86-virtual, + beaglebone-uboot ] experimental: [false] subpath: [.] diff --git a/kas/beaglebone-uboot.yml b/kas/beaglebone-uboot.yml new file mode 100644 index 00000000..06c5e45f --- /dev/null +++ b/kas/beaglebone-uboot.yml @@ -0,0 +1,9 @@ +header: + version: 14 + includes: + - kas/beaglebone.yml + +local_conf_header: + beaglebone-uboot: | + MENDER_FEATURES_ENABLE:append = " mender-uboot" + MENDER_FEATURES_DISABLE:append = "mender-grub" \ No newline at end of file