aboutsummaryrefslogtreecommitdiffstats
path: root/packages/miniinit/miniinit.bb
blob: 6c76be5281149d2bb0c16abd07889de863085a2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
DESCRIPTION = "minimal init."
SECTION = "base"
LICENSE = "GPL"
MAINTAINER = "Bruno Randolf <bruno.randolf@4g-systems.biz>"

# 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
}