X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=autogen.sh;h=287d7a2cd476e37ae7f27c53ab8e252357588ee7;hb=058f9461c8e84851f7d8207e792fa1285377e85a;hp=d5b796682524d7acd6ca8e568fa76da2fdcd97fd;hpb=67460e54bedffbc62589ab4d5742e85091107b87;p=carl9170fw.git diff --git a/autogen.sh b/autogen.sh index d5b7966..287d7a2 100755 --- a/autogen.sh +++ b/autogen.sh @@ -24,16 +24,22 @@ case "$1" in fi . ./.config + 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 + 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 + fi fi - sudo install -m 644 carlfw/carl9170.fw \ - /lib/firmware/carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw + install -m 644 carlfw/carl9170.fw \ + ../carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw echo "done." ;;