aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-core/sysvinit/sysvinit-inittab_xen.inc
blob: 724f47dcc1fc5a7dfdcd822393e0cafac07e6736 (plain)
1
2
3
4
5
6
7
8
9
10
do_install:append() {
    # if SERIAL_CONSOLES contains hvc0, it is already added in inittab so do
    # not add it twice
    if echo "${SERIAL_CONSOLES}" | grep -vq "hvc0"; then
        echo "" >> ${D}${sysconfdir}/inittab
        echo "X0:12345:respawn:${base_sbindir}/getty-wrapper 115200 hvc0" >> ${D}${sysconfdir}/inittab
    fi
}