X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=autogen.sh;h=83b4201eeb96575fa6a4ca1aac306e42d566fc98;hb=d900caf387f1b8a824d877f45804162a4758b35d;hp=d61418c7999d10453f4c91c7adb382e6931f84f3;hpb=549126ff5628df58264f157bc3339f1c4e828823;p=carl9170fw.git diff --git a/autogen.sh b/autogen.sh index d61418c..83b4201 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,11 +1,14 @@ -#!/bin/sh +#!/bin/bash set -e case "$1" in config) echo "Configuring..." - make -C config + pushd config + cmake . + make + popd config/conf Kconfig cmake . ;; @@ -13,7 +16,6 @@ case "$1" in compile) echo "Compile time..." make - ;; install) @@ -22,22 +24,23 @@ case "$1" in fi . ./.config + make + echo -n "Installing firmware..." + if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ]; then - if [ "$CONFIG_CARL9170FW_MAKE_RELEASE" = "y" ]; then - echo -n "Installing firmware..." - tmpfwfile=`mktemp` - cat carlfw/carl9170.fw carlfw/carl9170.dsc > $tmpfwfile - if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ] && - [ "$CONFIG_CARL9170FW_BUILD_MINIBOOT" = "y" ]; then - echo -n "Apply miniboot..." - tools/src/miniboot a $tmpfwfile minifw/miniboot.fw - fi - - sudo install $tmpfwfile /lib/firmware/carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw - rm $tmpfwfile - echo "done." + 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 + + install -m 644 carlfw/carl9170.fw \ + ../carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw + echo "done." ;; *)