Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
firmware /
carl9170fw /
Delete
Unzip
Name
Size
Permission
Date
Action
carlfw
[ DIR ]
drwxr-xr-x
2020-05-07 07:38
config
[ DIR ]
drwxr-xr-x
2020-05-07 07:38
extra
[ DIR ]
drwxr-xr-x
2020-05-07 07:38
include
[ DIR ]
drwxr-xr-x
2016-11-15 23:07
minifw
[ DIR ]
drwxr-xr-x
2020-05-07 07:38
toolchain
[ DIR ]
drwxr-xr-x
2020-05-07 07:38
tools
[ DIR ]
drwxr-xr-x
2020-05-07 07:38
CMakeLists.txt
416
B
-rw-r--r--
2020-04-14 09:21
COPYRIGHT
922
B
-rw-r--r--
2020-04-14 09:21
GPL
17.57
KB
-rw-r--r--
2020-04-14 09:21
Kconfig
115
B
-rw-r--r--
2020-04-14 09:21
README
882
B
-rw-r--r--
2020-04-14 09:21
autogen.sh
659
B
-rwxr-xr-x
2020-04-14 09:21
genapi.sh
390
B
-rwxr-xr-x
2020-04-14 09:21
Save
Rename
#!/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