mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 18:39:40 +01:00
We want to have a more generic platform definition. The netbook machine one currently supports the eee901 and the aspire one. We also moved the machine and netbook image definitions to meta-moblin.
18 lines
302 B
PHP
18 lines
302 B
PHP
DESCRIPTION = "2.6 Linux Development Kernel for moblin Atom based platforms"
|
|
SECTION = "kernel"
|
|
LICENSE = "GPL"
|
|
|
|
inherit kernel
|
|
|
|
do_configure() {
|
|
|
|
rm -f ${S}/.config || true
|
|
|
|
cp ${WORKDIR}/defconfig-${MACHINE} ${S}/.config
|
|
|
|
yes '' | oe_runmake oldconfig
|
|
|
|
}
|
|
|
|
|
|
COMPATIBLE_MACHINE = "netbook" |