From 549126ff5628df58264f157bc3339f1c4e828823 Mon Sep 17 00:00:00 2001 From: Christian Lamparter Date: Mon, 15 Nov 2010 20:27:08 +0100 Subject: [PATCH] carl9170 firmware build: automatically apply miniboot.fw Signed-off-by: Christian Lamparter --- autogen.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index e530fb1..d61418c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -25,11 +25,18 @@ case "$1" in if [ "$CONFIG_CARL9170FW_MAKE_RELEASE" = "y" ]; then - echo "Installing firmware..." + echo -n "Installing firmware..." tmpfwfile=`mktemp` cat carlfw/carl9170.fw carlfw/carl9170.dsc > $tmpfwfile + if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ] && + [ "$CONFIG_CARL9170FW_BUILD_MINIBOOT" = "y" ]; then + echo -n "Apply miniboot..." + tools/src/miniboot a $tmpfwfile minifw/miniboot.fw + fi + sudo install $tmpfwfile /lib/firmware/carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw rm $tmpfwfile + echo "done." fi ;; -- 2.31.1