carl9170: fix indention and add missing fi
[carl9170fw.git] / autogen.sh
index 729041e6e537656566a9b8035f5a3aee9a4bff51..287d7a2cd476e37ae7f27c53ab8e252357588ee7 100755 (executable)
@@ -27,14 +27,19 @@ 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
+               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."
        ;;