carl9170: Install binary in the parent directory, not /lib/firmware
[carl9170fw.git] / autogen.sh
index 8a47b51d57b4b8367e94089a65946c6cc368e466..83b4201eeb96575fa6a4ca1aac306e42d566fc98 100755 (executable)
@@ -1,19 +1,21 @@
-#!/bin/sh
+#!/bin/bash
 
 set -e
 
 case "$1" in
        config)
                echo "Configuring..."
+               pushd config
                cmake .
-               make -C config
+               make
+               popd
                config/conf Kconfig
+               cmake .
        ;;
 
        compile)
                echo "Compile time..."
                make
-
        ;;
 
        install)
@@ -22,15 +24,22 @@ case "$1" in
                fi
 
                . ./.config
+               make
 
                echo -n "Installing firmware..."
-               if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ] &&
-                  [ "$CONFIG_CARL9170FW_BUILD_MINIBOOT" = "y" ]; then
+               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
 
-               sudo install 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."
        ;;