blob: aa5a989df2c51bfae8c0f16ab68ff07872bf161c [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Compact getty terminal handler for virtual consoles only"
2SECTION = "console/utils"
3HOMEPAGE = "http://sourceforge.net/projects/mingetty/"
Andrew Geissler95ac1b82021-03-31 14:34:31 -05004DESCRIPTION = "This is a small Linux console getty that is started on the Linux text console, asks for a login name and then tranfers over to login directory. Is extended to allow automatic login and starting any app."
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00005LICENSE = "GPL-2.0-only"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006
7LIC_FILES_CHKSUM = "file://COPYING;md5=0c56db0143f4f80c369ee3af7425af6e"
8SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.gz"
9
10SRC_URI[md5sum] = "2a75ad6487ff271424ffc00a64420990"
11SRC_URI[sha256sum] = "0f55c90ba4faa913d91ef99cbf5cb2eb4dbe2780314c3bb17953f849c8cddd17"
12
13# substitute our CFLAGS for "-O2 -Wall -W -pipe"
14#
15EXTRA_OEMAKE = "CC='${CC}' \
16 CFLAGS='${CFLAGS} -D_GNU_SOURCE'"
17
18do_install(){
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080019 sed -i -e "s;SBINDIR=/sbin;SBINDIR=$base_sbindir;" ${S}/Makefile
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020 install -d ${D}${mandir}/man8 ${D}/${base_sbindir}
21 oe_runmake install DESTDIR=${D}
22}
23
24inherit update-alternatives
25
Patrick Williams213cb262021-08-07 19:21:33 -050026ALTERNATIVE:${PN} = "getty"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027ALTERNATIVE_LINK_NAME[getty] = "${base_sbindir}/getty"
28ALTERNATIVE_TARGET[getty] = "${base_sbindir}/mingetty"
29ALTERNATIVE_PRIORITY = "10"