From 13720665c3a20ae08c3d3b9b814334fe3e51b33e Mon Sep 17 00:00:00 2001 From: Itxaka Date: Fri, 15 Sep 2023 09:31:21 +0200 Subject: [PATCH] :bug: Provide a generic bootargs in the framework for fips (#1818) --- Earthfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Earthfile b/Earthfile index 1ae5e93ed..69df0793e 100644 --- a/Earthfile +++ b/Earthfile @@ -288,6 +288,9 @@ framework: ELSE IF [[ "$FLAVOR" =~ -rpi$ ]] COPY ./images/rpi/bootargs.cfg /framework/etc/cos/bootargs.cfg COPY ./images/rpi/config.txt /framework/boot/config.txt + ELSE IF [[ "$FLAVOR" =~ ^fips-systemd* ]] + # Use a generic one like redhat which has selinux disabled so it can be used on all flavors?? + COPY ./images/redhat/bootargs.cfg /framework/etc/cos/bootargs.cfg END END