X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=autogen.sh;h=0c4776dbc68549a3da4b1e21e211e97824f00bbb;hb=refs%2Fheads%2Fradar;hp=5d79159c41b774b46c40beced6030cab58e412f7;hpb=8dc065b3012754fb34dcb04b7ce295cca4be0627;p=carl9170fw.git diff --git a/autogen.sh b/autogen.sh index 5d79159..0c4776d 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 . ;; @@ -27,25 +28,23 @@ case "$1" in make echo -n "Installing firmware..." - if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ] && - [ "$CONFIG_CARL9170FW_BUILD_MINIBOOT" = "y" ]; then - echo -n "Apply miniboot..." - tools/src/miniboot a carlfw/carl9170.fw minifw/miniboot.fw - fi - - if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ]; then echo -n "Prepare firmware image..." tools/src/fwprepare carlfw/carl9170.fw - fi - sudo install -m 644 carlfw/carl9170.fw \ - /lib/firmware/carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw + if [ "$CONFIG_CARL9170FW_BUILD_MINIBOOT" = "y" ]; then + echo -n "Apply miniboot..." + # also update checksum + tools/src/miniboot a carlfw/carl9170.fw minifw/miniboot.fw + fi + fi + install -m 644 carlfw/carl9170.fw \ + ../carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw echo "done." ;; *) - $0 config + $0 config "$@" $0 compile ;;