Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
18 lines
484 B
Plaintext
18 lines
484 B
Plaintext
# Copyright (C) 2015 Khem Raj <raj.khem@gmail.com>
|
|
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
|
|
|
|
SRC_URI += "file://udev.procd"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${sysconfdir}/init.d
|
|
|
|
install -m 0755 ${WORKDIR}/udev.procd ${D}${sysconfdir}/init.d/udev
|
|
|
|
mkdir -p ${D}${sysconfdir}/rc.d
|
|
ln -s ../init.d/udev ${D}${sysconfdir}/rc.d/S05udev
|
|
ln -s ../init.d/udev ${D}${sysconfdir}/rc.d/K95udev
|
|
}
|