aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/miniinit/miniinit.bb
blob: 054c1bdae9099ea9bba395fc144a8768e0a7f52a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DESCRIPTION = "minimal init."
SECTION = "base"
LICENSE = "GPL"

# SERIAL_CONSOLE is generally defined by the MACHINE .conf.
# Set PACKAGE_ARCH appropriately.
PACKAGE_ARCH_${PN} = "${MACHINE_ARCH}"

SRC_URI = "file://rcS file://inittab"

do_install() {
	install -d ${D}${sysconfdir} \
		   ${D}${sysconfdir}/rcS.d \
		   ${D}${sysconfdir}/rc2.d \
		   ${D}${sysconfdir}/init.d

	install -m 0644 ${WORKDIR}/inittab ${D}${sysconfdir}/inittab
	install -m 0755 ${WORKDIR}/rcS ${D}${sysconfdir}/init.d

	if [ ! -z "${SERIAL_CONSOLE}" ]; then
		echo "${SERIAL_CONSOLE}::askfirst:/bin/sh --login" >> ${D}${sysconfdir}/inittab
	fi
}