mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 16:56:37 +01:00
In preparation for the more generic atom-pc, rename the netbook machine and all the relevant overrides. Leave the linux-netbook kernel recipe intact and as the default kernel for the atom-pc machine. A future patch will convert this over to linux-wrs and likely remove the linux-netbook kernel recipe. Cc: Tom Zanussi <tom.zanussi@intel.com> Cc: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
18 lines
304 B
PHP
18 lines
304 B
PHP
DESCRIPTION = "2.6 Linux Development Kernel for 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 = "(atom-pc|menlow)"
|