K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / lib / firmware / carl9170fw /
server ip : 172.67.156.115

your ip : 172.70.179.210

H O M E


Filename/lib/firmware/carl9170fw/autogen.sh
Size659
Permissionrwxr-xr-x
Ownerroot : root
Create time27-Apr-2025 09:50
Last modified05-Mar-2014 23:45
Last accessed05-Jul-2025 21:13
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
#!/bin/bash

set -e

case "$1" in
config)
echo "Configuring..."
pushd config
cmake .
make
popd
config/conf Kconfig
cmake .
;;

compile)
echo "Compile time..."
make
;;

install)
if [ ! -e .config ]; then
exit 1
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

install -m 644 carlfw/carl9170.fw \
../carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw
echo "done."
;;

*)
$0 config
$0 compile
;;


esac