1
0
forked from brl/citadel
citadel/meta-citadel-distro/recipes-core/base-files/base-files_%.bbappend

17 lines
491 B
Plaintext
Raw Normal View History

2017-12-04 16:33:20 -05:00
hostname="citadel"
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
SRC_URI += "\
file://locale.conf \
file://environment.sh \
file://fstab \
"
do_install_append () {
install -m 0755 -d ${D}/storage
install -m 0755 -d ${D}${sysconfdir}/profile.d
install -m 0644 ${WORKDIR}/locale.conf ${D}${sysconfdir}/locale.conf
install -m 0644 ${WORKDIR}/environment.sh ${D}${sysconfdir}/profile.d/environment.sh
install -m 0644 ${WORKDIR}/fstab ${D}${sysconfdir}/fstab
}