2017-12-12 15:20:36 -05:00
|
|
|
|
2017-12-04 16:33:20 -05:00
|
|
|
hostname="citadel"
|
2017-12-12 15:20:36 -05:00
|
|
|
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
|
2018-01-18 18:11:46 -05:00
|
|
|
SRC_URI += "\
|
|
|
|
file://locale.conf \
|
|
|
|
file://environment.sh \
|
|
|
|
file://fstab \
|
|
|
|
"
|
2017-12-12 15:20:36 -05:00
|
|
|
|
|
|
|
do_install_append () {
|
|
|
|
install -m 0755 -d ${D}/storage
|
2018-01-18 18:11:46 -05:00
|
|
|
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
|
2017-12-12 15:20:36 -05:00
|
|
|
}
|