+FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
+
+SRC_URI:append = " \
+ file://locale.conf \
+ file://locale.sh \
+"
+
do_install:append () {
echo "hvmpd" > ${D}${sysconfdir}/hostname
# Maybe make this machine-specific in the future...
echo "${MACHINE} revA" > ${D}${sysconfdir}/hwrevision
+
+ # /etc/locale.conf is systemd-specific.
+ install -d ${D}${sysconfdir}
+ install -m 0644 ${WORKDIR}/locale.conf ${D}${sysconfdir}
+
+ install -d ${D}${sysconfdir}/profile.d
+ install -m 0644 locale.sh ${D}${sysconfdir}/profile.d/
}