X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=autogen.sh;h=d61418c7999d10453f4c91c7adb382e6931f84f3;hb=549126ff5628df58264f157bc3339f1c4e828823;hp=e530fb1f810d1022032178198d80d270dcb7f51d;hpb=6305e2a8bb63996cc62e532bcef06cf5f5ba0de6;p=carl9170fw.git 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 ;;