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