mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 08:48:45 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
22 lines
708 B
PHP
22 lines
708 B
PHP
require linux.inc
|
|
|
|
inherit deploy
|
|
|
|
do_prepdefconfig() {
|
|
cp ${S}/arch/arm/configs/s3c24xx_simtec_defconfig ${WORKDIR}/defconfig
|
|
if test -e ${WORKDIR}/${MACHINE}-defconfig-append; then
|
|
cat ${WORKDIR}/${MACHINE}-defconfig-append >> ${WORKDIR}/defconfig
|
|
fi
|
|
}
|
|
|
|
addtask prepdefconfig before do_configure after do_patch
|
|
|
|
do_deploy() {
|
|
install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOYDIR}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}.bin
|
|
cd ${DEPLOYDIR}
|
|
ln -sf ${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}.bin ${KERNEL_IMAGETYPE}-${MACHINE}.bin
|
|
tar -cvzf ${DEPLOYDIR}/modules-${KERNEL_RELEASE}-${MACHINE}.tgz -C ${D} lib
|
|
}
|
|
|
|
addtask deploy before do_populate_sysroot after do_install
|