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
21 lines
454 B
BlitzBasic
21 lines
454 B
BlitzBasic
SUMMARY = "UserAddBadTask"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
LICENSE = "MIT"
|
|
|
|
DEPENDS:append = "coreutils-native"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
inherit useradd allarch
|
|
|
|
USERADD_PACKAGES = "${PN}"
|
|
USERADD_PARAM:${PN} = "-u 5555 --gid groupaddtask useraddtask"
|
|
GROUPADD_PARAM:${PN} = "-r groupaddtask"
|
|
|
|
do_badthingshappen() {
|
|
echo "foo"
|
|
}
|
|
|
|
addtask badthingshappen after do_populate_sysroot before do_package
|