diff mbox series

[isar-cip-core,1/3] start-qemu.sh : Set bullseye as default DISTRO RELEASE

Message ID 20221010070232.10478-2-Sai.Sathujoda@toshiba-tsip.com (mailing list archive)
State Handled Elsewhere
Headers show
Series Update secure-boot documentation and scripts | expand

Commit Message

Sai.Sathujoda@toshiba-tsip.com Oct. 10, 2022, 7:02 a.m. UTC
From: Sai <Sai.Sathujoda@toshiba-tsip.com>

Signed-off-by: Sai <Sai.Sathujoda@toshiba-tsip.com>
---
 start-qemu.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/start-qemu.sh b/start-qemu.sh
index bcc7a51..639951e 100755
--- a/start-qemu.sh
+++ b/start-qemu.sh
@@ -31,10 +31,10 @@  if [ -n "${QEMU_PATH}" ]; then
 fi
 
 if [ -z "${DISTRO_RELEASE}" ]; then
-	if grep -s -q "DEBIAN_BULLSEYE: true" .config.yaml; then
-		DISTRO_RELEASE="bullseye"
-	else
+	if grep -s -q "DEBIAN_BUSTER: true" .config.yaml; then
 		DISTRO_RELEASE="buster"
+	else
+		DISTRO_RELEASE="bullseye"
 	fi
 fi