blob: 35bafac202cc29488b7a7012aa16fee034b0261d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI_append = " \
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
}
|