X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=autogen.sh;h=85f011d7551fb24cf0db5964133f06d5d2c1bb62;hb=refs%2Fheads%2Fmaster;hp=83b4201eeb96575fa6a4ca1aac306e42d566fc98;hpb=d900caf387f1b8a824d877f45804162a4758b35d;p=carl9170fw.git diff --git a/autogen.sh b/autogen.sh index 83b4201..85f011d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -9,7 +9,8 @@ case "$1" in cmake . make popd - config/conf Kconfig + shift 1 + config/conf Kconfig "$@" cmake . ;; @@ -23,28 +24,29 @@ case "$1" in exit 1 fi + # shellcheck source=/dev/null . ./.config make echo -n "Installing firmware..." if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ]; then - - if [ "$CONFIG_CARL9170FW_BUILD_MINIBOOT" = "y" ]; then - echo -n "Apply miniboot..." - # also adds checksum - tools/src/miniboot a carlfw/carl9170.fw minifw/miniboot.fw - else - echo -n "Add checksum..." - tools/src/checksum carlfw/carl9170.fw + if [ "$CONFIG_CARL9170FW_BUILD_MINIBOOT" = "y" ]; then + echo -n "Apply miniboot..." + # also adds checksum + tools/src/miniboot a carlfw/carl9170.fw minifw/miniboot.fw + else + echo -n "Add checksum..." + tools/src/checksum carlfw/carl9170.fw + fi fi install -m 644 carlfw/carl9170.fw \ - ../carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw + ../carl9170-"$CONFIG_CARL9170FW_RELEASE_VERSION".fw echo "done." ;; *) - $0 config + $0 config "$@" $0 compile ;;