12 lines
245 B
Bash
Executable File
12 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
cd ../../sdk/$1/qsdk
|
|
if [ -d staging_dir ]
|
|
then
|
|
echo "Info: toolchain qca toolchain exists."
|
|
else
|
|
echo "Info: Uncompressing toolchain..."
|
|
tar -xzvf ./staging_dir.tar.gz
|
|
fi
|
|
./scripts/feeds update -a
|
|
./scripts/feeds install -a -f
|