meta-digi-del: tune target's boot

Remove 'login' on VT (tty1)
Remove 'bootlogd' (with also uses tty1)

Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
Javier Viguera 2013-01-21 14:26:09 +01:00
parent b9e0768236
commit ca91bedf08
2 changed files with 16 additions and 0 deletions

View File

@ -11,3 +11,6 @@ IMAGE_CLASSES += "image_types_digi"
# Digi BSP default versions # Digi BSP default versions
PREFERRED_VERSION_udev = "175" PREFERRED_VERSION_udev = "175"
# Do not enable console on VT (see sysvinit-inittab recipe)
USE_VT = "0"

View File

@ -0,0 +1,13 @@
PR_append_del = "+${DISTRO}.r0"
# Remove 'bootlogd' bootscript and symlinks
# (synchronize with poky's sysvinit_2.88dsf.bb)
do_install_append_del() {
rm -f ${D}${sysconfdir}/init.d/stop-bootlogd
rm -f ${D}${sysconfdir}/init.d/bootlogd
rm -f ${D}${sysconfdir}/rc2.d/S99stop-bootlogd
rm -f ${D}${sysconfdir}/rc3.d/S99stop-bootlogd
rm -f ${D}${sysconfdir}/rc4.d/S99stop-bootlogd
rm -f ${D}${sysconfdir}/rc5.d/S99stop-bootlogd
rm -f ${D}${sysconfdir}/rcS.d/S07bootlogd
}