mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-18 15:40:27 +00:00
Add a tiny simple debug script that will mount all available virtual file systems and then execute a shell. Signed-off-by: Dmitry Eremin-Solenikov <dmitry_eremin@mentor.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
15 lines
332 B
BlitzBasic
15 lines
332 B
BlitzBasic
SUMMARY = "Extremely basic live image init script"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
SRC_URI = "file://init-debug.sh"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -m 0755 ${WORKDIR}/init-debug.sh ${D}/init
|
|
}
|
|
|
|
inherit allarch
|
|
|
|
FILES_${PN} += " /init "
|