X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=autogen.sh;h=5d79159c41b774b46c40beced6030cab58e412f7;hb=80466f770e11bf8eeaa24fa8f3e4821c6be660b4;hp=43dbce6e9bc21a32d2f8639045a4ed1177a2a62f;hpb=e72388a0aa23da8bc8e24a0cbe9d523c5a9ce294;p=carl9170fw.git diff --git a/autogen.sh b/autogen.sh index 43dbce6..5d79159 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,15 +24,24 @@ 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 + fi - if [ "$CONFIG_CARL9170FW_MAKE_RELEASE" = "y" ]; then - echo "Installing firmware..." - tmpfwfile=`mktemp` - cat carlfw/carl9170.fw carlfw/carl9170.dsc > $tmpfwfile - install $tmpfwfile /lib/firmware/carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw - rm $tmpfwfile + if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ]; then + echo -n "Prepare firmware image..." + tools/src/fwprepare carlfw/carl9170.fw fi + + sudo install -m 644 carlfw/carl9170.fw \ + /lib/firmware/carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw + echo "done." ;; *)