From 226d4ecd0a9fed7003eb4ca59cf38ba7ef27c521 Mon Sep 17 00:00:00 2001 From: Artem Prilutskiy Date: Thu, 4 Aug 2016 13:35:38 +0300 Subject: [PATCH 1/4] OpenWRT/readme.txt removed --- OpenWRT/readme.txt | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 OpenWRT/readme.txt diff --git a/OpenWRT/readme.txt b/OpenWRT/readme.txt deleted file mode 100644 index 17797da..0000000 --- a/OpenWRT/readme.txt +++ /dev/null @@ -1,8 +0,0 @@ -/usr/lib/lua/luci/controller/cronosagent.lua -/usr/lib/lua/luci/model/cbi/cronosagent/configure.lua -/etc/config/cronosagent -/etc/init.d/cronosagent - -Copy OpenWRT/package/Makefile -> ~/openwrt/packages/cronosagent/Makefile -Copy * -> ~/openwrt/packages/cronosagent/source/* -Remove ~/openwrt/packages/cronosagent/source/OpenWRT/package/Makefile \ No newline at end of file From e256328ee7d7da7884b02aaa840df6495ed14ea0 Mon Sep 17 00:00:00 2001 From: Artem Prilutskiy Date: Thu, 4 Aug 2016 13:39:24 +0300 Subject: [PATCH 2/4] build.sh improved :) --- OpenWRT/build.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/OpenWRT/build.sh b/OpenWRT/build.sh index 8a45e25..72e4f06 100755 --- a/OpenWRT/build.sh +++ b/OpenWRT/build.sh @@ -3,10 +3,9 @@ PACKAGE=cronosagent PROJECT=$(pwd)/.. -OPENWRT=${HOME}/openwrt +OPENWRT=$HOME/openwrt -test -d $OPENWRT/package/$PACKAGE -if [ "$?" -eq "0" ] +if [ -d $OPENWRT/package/$PACKAGE ] then # Remove existing package in buildroot rm -rf $OPENWRT/package/$PACKAGE From b62c38088e6a0486d5c17f5f5625734b428c4169 Mon Sep 17 00:00:00 2001 From: Artem Prilutskiy Date: Thu, 4 Aug 2016 13:44:43 +0300 Subject: [PATCH 3/4] Fixed issue with path which was happened on Rudy's machine --- OpenWRT/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenWRT/build.sh b/OpenWRT/build.sh index 72e4f06..05aca74 100755 --- a/OpenWRT/build.sh +++ b/OpenWRT/build.sh @@ -2,7 +2,7 @@ PACKAGE=cronosagent -PROJECT=$(pwd)/.. +PROJECT=$(readlink -f $0 | xargs dirname)/.. OPENWRT=$HOME/openwrt if [ -d $OPENWRT/package/$PACKAGE ] From 9ca35923fa53f41be9d043c9d5f8c3e9dfd8e42b Mon Sep 17 00:00:00 2001 From: Artem Prilutskiy Date: Thu, 4 Aug 2016 13:46:04 +0300 Subject: [PATCH 4/4] -j 4 --- OpenWRT/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenWRT/build.sh b/OpenWRT/build.sh index 05aca74..e349161 100755 --- a/OpenWRT/build.sh +++ b/OpenWRT/build.sh @@ -28,7 +28,7 @@ if [ "$?" -ne "0" ] then # Give user to choose package $PACKAGE make menuconfig - make + make -j 4 fi # Build package