X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=autogen.sh;h=d5b796682524d7acd6ca8e568fa76da2fdcd97fd;hb=83e3f194f0fbf10f4d1bf325e73ec7dbb179a130;hp=e530fb1f810d1022032178198d80d270dcb7f51d;hpb=6305e2a8bb63996cc62e532bcef06cf5f5ba0de6;p=carl9170fw.git diff --git a/autogen.sh b/autogen.sh index e530fb1..d5b7966 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) @@ -23,14 +25,16 @@ case "$1" in . ./.config - - if [ "$CONFIG_CARL9170FW_MAKE_RELEASE" = "y" ]; then - echo "Installing firmware..." - tmpfwfile=`mktemp` - cat carlfw/carl9170.fw carlfw/carl9170.dsc > $tmpfwfile - sudo install $tmpfwfile /lib/firmware/carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw - rm $tmpfwfile + 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 + + sudo install -m 644 carlfw/carl9170.fw \ + /lib/firmware/carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw + echo "done." ;; *)