From 6e7e1b7172813fc4ecb60597f903dd21a4616159 Mon Sep 17 00:00:00 2001 From: John Ogness Date: Tue, 19 Dec 2017 11:16:28 +0100 Subject: update yocto-advanced: sync to devel/manut/yocto The devel/manut/yocto heavily diverted from master. Sync with latest version 8cd4956a9b48a316eab6dc6d1b1f6cd51362fecf. Signed-off-by: John Ogness --- .../recipes-app/greeting/files/hello-init.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello-init.sh (limited to 'distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello-init.sh') diff --git a/distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello-init.sh b/distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello-init.sh new file mode 100644 index 0000000..1d40092 --- /dev/null +++ b/distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello-init.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +case $1 in +start) + exec hello + ;; +stop) + exit 0 + ;; +esac + +exit 1 -- cgit v1.2.3