* install locale.conf to override systemd/oe-core default * remove profile hacks * ensure there is a default UTF-8 lingua installed (selection might change when C.UTF-8 is established Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
17 lines
360 B
BlitzBasic
17 lines
360 B
BlitzBasic
DESCRIPTION = "Set default locale"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
inherit allarch
|
|
|
|
SRC_URI = "file://locale.conf"
|
|
|
|
do_configure[noexec] = '1'
|
|
|
|
do_compile[noexec] = '1'
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}
|
|
install -m 644 ${WORKDIR}/locale.conf ${D}${sysconfdir}/
|
|
}
|