From 6c10b3679416fafce01110da3b175d3edb09f82e Mon Sep 17 00:00:00 2001 From: Yossi Date: Mon, 23 Jan 2017 19:43:42 +0200 Subject: [PATCH] fixes for drideOS --- stage2/01-sys-tweaks/01-run.sh | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/stage2/01-sys-tweaks/01-run.sh b/stage2/01-sys-tweaks/01-run.sh index 6e66d40..a669085 100755 --- a/stage2/01-sys-tweaks/01-run.sh +++ b/stage2/01-sys-tweaks/01-run.sh @@ -14,7 +14,7 @@ on_chroot << EOF systemctl disable hwclock.sh systemctl disable nfs-common systemctl disable rpcbind -systemctl disable ssh +systemctl enable ssh systemctl enable regenerate_ssh_host_keys systemctl enable apply_noobs_os_config systemctl enable resize2fs_once @@ -120,7 +120,8 @@ sudo make install sudo ldconfig # remove the installation file - +cd / +sudo rm opencv-3.1.0.zip # Install Node @@ -140,18 +141,22 @@ cd Cardigan # make the video dir writable sudo chmod 777 -R modules/video/ +# clone dride-ws +cd dride-ws +sudo git clone --depth 1 https://github.com/dride/dride-ws.git + +cd / + + + echo "========== Install picamera ============" sudo pip install "picamera[array]" # enable camera on raspi-config -grep "start_x=1" /boot/config.txt -if grep "start_x=1" /boot/config.txt -then - echo "Already enabled." -else - sed -i "s/start_x=0/start_x=1/g" /boot/config.txt - reboot -fi +echo "" >> /boot/config.txt +echo "#enable piCaera" >> /boot/config.txt +echo "start_x=1" >> /boot/config.txt + echo "========== Install omxplayer ============" sudo apt-get install omxplayer -y