From 82a34566720e387b8992d20b92fccd9e97cee2cb Mon Sep 17 00:00:00 2001
From: Robert Nelson <robertcnelson@gmail.com>
Date: Thu, 19 Dec 2013 12:01:45 -0600
Subject: [PATCH] scripts: tie in flasher script

Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
---
 init_scripts/generic-debian.sh   | 14 ++++++--------
 init_scripts/generic-ubuntu.conf |  7 +++++++
 scripts/chroot.sh                |  3 +++
 3 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/init_scripts/generic-debian.sh b/init_scripts/generic-debian.sh
index e4d0af785..039b010a7 100644
--- a/init_scripts/generic-debian.sh
+++ b/init_scripts/generic-debian.sh
@@ -53,14 +53,12 @@ start|reload|force-reload|restart)
 		fi
 	fi
 
-	#if [ -f /usr/local/bin/node ] && [ -f /opt/cloud9/server.js ] ; then
-		#/usr/local/bin/node /opt/cloud9/server.js -l 0.0.0.0 -w /var/lib/cloud9 -p 3000 >/opt/cloud9/log 2>&1 &
-	#fi
-
-	#if [ -f /opt/cloud9/bin/cloud9.sh ] ; then
-		#/opt/cloud9/bin/cloud9.sh -l 0.0.0.0 -w /var/lib/cloud9 -p 3000 >/opt/cloud9/log 2>&1 &
-	#fi
-
+	if [ -f /boot/uboot/flash-eMMC.txt ] ; then
+		if [ -f /opt/scripts/beaglebone-black-eMMC-flasher.sh ] ; then
+			mkdir -p /boot/uboot/debug/
+			/bin/bash /opt/scripts/beaglebone-black-eMMC-flasher.sh >/boot/uboot/debug/flash-eMMC.log 2>&1
+		fi
+	fi
 	;;
 stop)
 	exit 0
diff --git a/init_scripts/generic-ubuntu.conf b/init_scripts/generic-ubuntu.conf
index 9ec99027b..541293b3f 100644
--- a/init_scripts/generic-ubuntu.conf
+++ b/init_scripts/generic-ubuntu.conf
@@ -42,4 +42,11 @@ if [ -f /boot/uboot/SOC.sh ] && [ -f /boot/uboot/run_boot-scripts ] ; then
 		/bin/sh /opt/boot-scripts/${board}.sh >/dev/null 2>&1 &
 	fi
 fi
+
+if [ -f /boot/uboot/flash-eMMC.txt ] ; then
+	if [ -f /opt/scripts/beaglebone-black-eMMC-flasher.sh ] ; then
+		mkdir -p /boot/uboot/debug/
+		/bin/bash /opt/scripts/beaglebone-black-eMMC-flasher.sh >/boot/uboot/debug/flash-eMMC.log 2>&1
+	fi
+fi
 end script
diff --git a/scripts/chroot.sh b/scripts/chroot.sh
index b422b0bb3..970350af1 100755
--- a/scripts/chroot.sh
+++ b/scripts/chroot.sh
@@ -766,6 +766,9 @@ if [ "x${chroot_enable_xorg}" = "xenable" ] ; then
 	sudo mv /tmp/${wfile} ${tempdir}/etc/X11/${wfile}
 fi
 
+sudo mkdir -p ${tempdir}/opt/scripts/ || true
+sudo cp -v ${DIR}/device_scripts/*.sh ${tempdir}/opt/scripts/
+
 if [ -d ${DIR}/deploy/${export_filename}/ ] ; then
 	rm -rf ${DIR}/deploy/${export_filename}/ || true
 fi
-- 
GitLab