blob: 4d831fd8942c6a3ac74abf73bdd14efa9e8ecd38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# look for files in this layer first
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
PR_append = "-arago1"
# Pre-create /run symlink to point to /var/run at build time
# This normally happens on first boot, but may be too late for automount,
# which tries to create mount-points in /run
# NOTE: This step is not required in Dora and up, due to reverse direction
# of symlinking between /run and /var/run
do_install_append () {
ln -sf /var/run ${D}/run
}
|