X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=blobdiff_plain;f=autogen.sh;h=729041e6e537656566a9b8035f5a3aee9a4bff51;hp=8a47b51d57b4b8367e94089a65946c6cc368e466;hb=500397585d53a08f83d1798c0e871c91667a2be3;hpb=188f2a6ac8f0b9e497d25a9b7c136de556e098a6 diff --git a/autogen.sh b/autogen.sh index 8a47b51..729041e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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,6 +24,7 @@ case "$1" in fi . ./.config + make echo -n "Installing firmware..." if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ] && @@ -30,7 +33,8 @@ case "$1" in tools/src/miniboot a carlfw/carl9170.fw minifw/miniboot.fw fi - sudo install carlfw/carl9170.fw /lib/firmware/carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw + sudo install -m 644 carlfw/carl9170.fw \ + /lib/firmware/carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw echo "done." ;;