From 52f60c0dd1948d197cc051baa1b828521679c174 Mon Sep 17 00:00:00 2001 From: Kostiantyn Bushko Date: Thu, 23 Jan 2020 10:54:45 +0200 Subject: Fix default uboot-enable variable in qemu command script Signed-off-by: Kostiantyn Bushko --- scripts/envsetup.sh | 2 +- scripts/qemucommand.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/envsetup.sh b/scripts/envsetup.sh index 5b3b068..a7ee877 100755 --- a/scripts/envsetup.sh +++ b/scripts/envsetup.sh @@ -45,7 +45,7 @@ if [[ ! -f "${BUILDDIR}/conf/local.conf" ]]; then cat "${METADIR}/meta-updater/conf/include/bblayers/sota_${MACHINE}.inc" >> conf/bblayers.conf sed -e "s/##MACHINE##/$MACHINE/g" \ -e "s/##DISTRO##/$DISTRO/g" \ - "${METADIR}/meta-updater/conf/$BASE_CONF" >> conf/local.conf + "${METADIR}/meta-updater/conf/$BASE_CONF" >> conf/local.conf for config in ${DISTRO_CONFIGS[@]}; do if [[ "$BASE_CONF" != "$config" ]]; then diff --git a/scripts/qemucommand.py b/scripts/qemucommand.py index bd7b890..86b5b9f 100644 --- a/scripts/qemucommand.py +++ b/scripts/qemucommand.py @@ -41,7 +41,7 @@ def random_mac(): class QemuCommand(object): def __init__(self, args): print(args) - self.enable_u_boot = None + self.enable_u_boot = True self.dry_run = args.dry_run self.overlay = args.overlay self.host_fwd = None -- cgit v1.2.3-54-g00ecf