summaryrefslogtreecommitdiffstats
path: root/bsp/meta-arm/meta-arm-autonomy/recipes-core/sysvinit/sysvinit-inittab_2.%.bbappend
blob: 7b0c64728cedf323ee39f1ec4fc6b454e4191309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# if arm-autonomy-guest is activated, we are running as a xen guest so we must
# have a console on hvc0
# This is normally done in meta-virtualization if xen is activated but here
# we don't have xen activated.
#

SYSVINIT_ADDHVC0 = "${@bb.utils.contains('DISTRO_FEATURES', \
    'arm-autonomy-guest', 'true', 'false', d)}"

do_install_append() {
    if ${SYSVINIT_ADDHVC0}; then
        echo "" >> ${D}${sysconfdir}/inittab
        echo "X0:12345:respawn:/sbin/getty 115200 hvc0" >> \
            ${D}${sysconfdir}/inittab
    fi
}