mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
sysvinit-inittab: Add wrapper script to verify console exists
Add a wrapper script around getty to check if a given console exists, this allows for multiple Console ttys to be specified for various boards without having additional BSP types just for different console types. [YOCTO #8689] (From OE-Core rev: b93369a7943949f51057e0a704f5524ab7682fe6) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b7f610d3e9
commit
ccb2a57ad2
@@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
if [ -c /dev/$2 ]
|
||||||
|
then
|
||||||
|
/sbin/getty -L $1 $2
|
||||||
|
fi
|
||||||
@@ -4,7 +4,8 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=80
|
|||||||
|
|
||||||
PR = "r10"
|
PR = "r10"
|
||||||
|
|
||||||
SRC_URI = "file://inittab"
|
SRC_URI = "file://inittab \
|
||||||
|
file://start_getty"
|
||||||
|
|
||||||
S = "${WORKDIR}"
|
S = "${WORKDIR}"
|
||||||
|
|
||||||
@@ -15,8 +16,10 @@ do_compile() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
install -d ${D}${sysconfdir}
|
install -d ${D}${sysconfdir}
|
||||||
|
install -d ${D}${sysconfdir}/init.d
|
||||||
install -m 0644 ${WORKDIR}/inittab ${D}${sysconfdir}/inittab
|
install -m 0644 ${WORKDIR}/inittab ${D}${sysconfdir}/inittab
|
||||||
|
install -m 0755 ${WORKDIR}/start_getty ${D}${sysconfdir}/init.d/start_getty
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
tmp="${SERIAL_CONSOLES}"
|
tmp="${SERIAL_CONSOLES}"
|
||||||
@@ -24,7 +27,7 @@ do_install() {
|
|||||||
do
|
do
|
||||||
j=`echo ${i} | sed s/\;/\ /g`
|
j=`echo ${i} | sed s/\;/\ /g`
|
||||||
label=`echo ${i} | sed -e 's/tty//' -e 's/^.*;//' -e 's/;.*//'`
|
label=`echo ${i} | sed -e 's/tty//' -e 's/^.*;//' -e 's/;.*//'`
|
||||||
echo "$label:12345:respawn:${base_sbindir}/getty -L ${j}" >> ${D}${sysconfdir}/inittab
|
echo "$label:12345:respawn:${sysconfdir}/init.d/start_getty ${j}" >> ${D}${sysconfdir}/inittab
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ "${USE_VT}" = "1" ]; then
|
if [ "${USE_VT}" = "1" ]; then
|
||||||
@@ -73,7 +76,7 @@ fi
|
|||||||
# Set PACKAGE_ARCH appropriately.
|
# Set PACKAGE_ARCH appropriately.
|
||||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||||
|
|
||||||
FILES_${PN} = "${sysconfdir}/inittab"
|
FILES_${PN} = "${sysconfdir}/inittab ${sysconfdir}/init.d/start_getty"
|
||||||
CONFFILES_${PN} = "${sysconfdir}/inittab"
|
CONFFILES_${PN} = "${sysconfdir}/inittab"
|
||||||
|
|
||||||
USE_VT ?= "1"
|
USE_VT ?= "1"
|
||||||
|
|||||||
Reference in New Issue
Block a user