Improved build.sh
This commit is contained in:
parent
afd11a5218
commit
973e19240f
1 changed files with 4 additions and 10 deletions
|
@ -6,9 +6,7 @@ PROJECT=$(pwd)/..
|
||||||
OPENWRT=${HOME}/openwrt
|
OPENWRT=${HOME}/openwrt
|
||||||
|
|
||||||
test -d $OPENWRT/package/$PACKAGE
|
test -d $OPENWRT/package/$PACKAGE
|
||||||
STATE=$?
|
if [ "$?" -eq "0" ]
|
||||||
|
|
||||||
if [ "$STATE" -eq "0" ]
|
|
||||||
then
|
then
|
||||||
# Remove existing package in buildroot
|
# Remove existing package in buildroot
|
||||||
rm -rf $OPENWRT/package/$PACKAGE
|
rm -rf $OPENWRT/package/$PACKAGE
|
||||||
|
@ -23,19 +21,15 @@ pushd . > /dev/null
|
||||||
|
|
||||||
cd $OPENWRT
|
cd $OPENWRT
|
||||||
|
|
||||||
if [ "$STATE" -eq "1" ]
|
|
||||||
then
|
|
||||||
# Build predefined packages for the first run
|
|
||||||
make
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Make Makefile visible to Buildroot
|
# Make Makefile visible to Buildroot
|
||||||
mv package/$PACKAGE/source/OpenWRT/Makefile package/$PACKAGE
|
mv package/$PACKAGE/source/OpenWRT/Makefile package/$PACKAGE
|
||||||
|
|
||||||
if [ "$STATE" -eq "1" ]
|
grep "CONFIG_PACKAGE_${PACKAGE}=m" .config > /dev/null
|
||||||
|
if [ "$?" -ne "0" ]
|
||||||
then
|
then
|
||||||
# Give user to choose package $PACKAGE
|
# Give user to choose package $PACKAGE
|
||||||
make menuconfig
|
make menuconfig
|
||||||
|
make
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Build package
|
# Build package
|
||||||
|
|
Loading…
Add table
Reference in a new issue