mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 17:26:36 +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>
43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
SECTION = "kernel"
|
|
DESCRIPTION = "Linux kernel for Intel PXA3xx Zylonite"
|
|
LICENSE = "GPL"
|
|
|
|
KERNEL_IMAGETYPE = "zImage"
|
|
KERNEL_OUTPUT = "arch/${ARCH}/boot/compressed/${KERNEL_IMAGETYPE}"
|
|
|
|
inherit kernel deploy
|
|
|
|
RPROVIDES_kernel-image = "hostap-modules"
|
|
|
|
COMPATIBLE_MACHINE = "zylonite"
|
|
|
|
RPSRC = "http://www.rpsys.net/openzaurus/patches/archive"
|
|
|
|
do_configure_prepend() {
|
|
|
|
rm -f ${S}/.config || true
|
|
|
|
if [ "${TARGET_OS}" = "linux-gnueabi" -o "${TARGET_OS}" = "linux-uclibcgnueabi" ]; then
|
|
echo "CONFIG_AEABI=y" >> ${S}/.config
|
|
echo "CONFIG_OABI_COMPAT=y" >> ${S}/.config
|
|
else
|
|
echo "# CONFIG_AEABI is not set" >> ${S}/.config
|
|
echo "# CONFIG_OABI_COMPAT is not set" >> ${S}/.config
|
|
fi
|
|
|
|
sed -e '/CONFIG_AEABI/d' \
|
|
-e '/CONFIG_OABI_COMPAT=/d' \
|
|
'${WORKDIR}/defconfig' >>'${S}/.config'
|
|
|
|
yes '' | oe_runmake oldconfig
|
|
}
|
|
|
|
do_deploy() {
|
|
install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOYDIR}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}.bin
|
|
rm -f ${DEPLOYDIR}/${KERNEL_IMAGETYPE}-${MACHINE}.bin
|
|
ln -s ${DEPLOYDIR}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME}.bin ${DEPLOYDIR}/${KERNEL_IMAGETYPE}-${MACHINE}.bin
|
|
#tar -cvzf ${DEPLOYDIR}/modules-${KERNEL_RELEASE}-${MACHINE}.tgz -C ${D} lib
|
|
}
|
|
|
|
addtask deploy before do_build after do_install
|