X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=autogen.sh;h=729041e6e537656566a9b8035f5a3aee9a4bff51;hb=3d744935c5ad5735c5a5ea0486e0c6389aa2c94f;hp=56b8101642fa66c0b902bb9be30375bdda4a3f0f;hpb=426e6ff2a4bb4ae1c19def78631e28a6cbcd845c;p=carl9170fw.git diff --git a/autogen.sh b/autogen.sh index 56b8101..729041e 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,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." ;;