|
@@ -387,6 +387,7 @@ EOF
|
387
|
387
|
echo " cd /root/${PROJECT_NAME}" >> $rootdir/root/.bashrc
|
388
|
388
|
echo " git stash" >> $rootdir/root/.bashrc
|
389
|
389
|
echo " git pull" >> $rootdir/root/.bashrc
|
|
390
|
+ echo " git checkout bashrc/stretch" >> $rootdir/root/.bashrc
|
390
|
391
|
echo " make install" >> $rootdir/root/.bashrc
|
391
|
392
|
|
392
|
393
|
if [[ $VARIANT != "mesh" && $VARIANT != "meshclient" && $VARIANT != "meshusb" && $VARIANT != "usb" ]]; then
|
|
@@ -1292,9 +1293,11 @@ fi
|
1292
|
1293
|
sed -i "s|#host-name=.*|host-name=${PROJECT_NAME}|g" $rootdir/etc/avahi/avahi-daemon.conf
|
1293
|
1294
|
sed -i "s|host-name=.*|host-name=${PROJECT_NAME}|g" $rootdir/etc/avahi/avahi-daemon.conf
|
1294
|
1295
|
|
|
1296
|
+# TODO temporary for stretch
|
1295
|
1297
|
chroot "$rootdir" /bin/bash -x <<EOF
|
1296
|
1298
|
git clone $PROJECT_REPO /root/$PROJECT_NAME
|
1297
|
1299
|
cd /root/$PROJECT_NAME
|
|
1300
|
+git checkout bashrc/stretch
|
1298
|
1301
|
make install
|
1299
|
1302
|
EOF
|
1300
|
1303
|
|