blob: 95299da7858d4ed8fbeb6e422fa744f850abf6a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
SRC_URI = " \
file://weston_exp.sh \
"
# Add Weston configuration script
do_install_append() {
install -d ${D}/etc/profile.d
install -m 0755 ${WORKDIR}/weston_exp.sh ${D}/etc/profile.d
}
FILES_${PN} += " /etc/profile.d/weston_exp.sh \
"
|