From 430efee467c2b3f505921318c59f34f43f4c11e5 Mon Sep 17 00:00:00 2001 From: Giulio Date: Tue, 8 Sep 2020 15:45:53 +0200 Subject: [PATCH] Updated build script for tgr --- build-tgr.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-tgr.sh b/build-tgr.sh index 27e2a9d..9861f23 100755 --- a/build-tgr.sh +++ b/build-tgr.sh @@ -25,7 +25,7 @@ git clone https://github.com/buildroot/buildroot.git target/buildroot echo "[+] Adding customization files" cp -R buildroot/* target/buildroot # copy buildroot configs -sed -i "s/###ROOTPASSWORD###/$password/g" target/buildroot/configs/pcengines_apu2_defconfig +sed -i "s/###ROOTPASSWORD###/$password/g" target/buildroot/configs/tiesse_tgr_defconfig cp -R conf/* target/overlay # copy target system config files cp -R webpanel/* target/overlay/var/www/html # copy the webpanel cp -R update/update.sh target/overlay #copy the update script and certificate @@ -62,5 +62,5 @@ echo $password > target/keys/rootpassword echo "[+] Building the image" N=`grep -c '^processor' /proc/cpuinfo` cd target/buildroot -make pcengines_apu2_defconfig +make tiesse_tgr_defconfig make -j$N