diff options
author | 2011-03-11 11:19:56 -0800 | |
---|---|---|
committer | 2011-03-11 11:20:19 -0800 | |
commit | 232c1be664075eeceb2b123ef91d2dd71a1eb7a6 (patch) | |
tree | 9644aef1ce18130555311d0e91c6bcf9dfca5f9e | |
parent | 9497c977021d7cf76b129f5baeac0ea0b9f10e22 (diff) | |
download | meta-intel-232c1be664075eeceb2b123ef91d2dd71a1eb7a6.tar.gz meta-intel-232c1be664075eeceb2b123ef91d2dd71a1eb7a6.tar.bz2 meta-intel-232c1be664075eeceb2b123ef91d2dd71a1eb7a6.zip |
n450: use KMACHINE instead of WRMACHINE (fix boot failure)
Fixes [YOCTO #837]
The n450 linux-yocto-stable bbappend was using WRMACHINE instead of KMACHINE.
This resulted in KMACHINE being set to UNDEFINED by the linux-yocto.inc which
resulted in bulding the common_pc-standard branch instead of the
atom-pc-standard branch. This build a kernel without vfat, blk loop, and the
requisite codepages.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
CC: Tom Zanussi <tom.zanussi@intel.com>
-rw-r--r-- | meta-n450/recipes-kernel/linux/linux-yocto-stable_git.bbappend | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-n450/recipes-kernel/linux/linux-yocto-stable_git.bbappend b/meta-n450/recipes-kernel/linux/linux-yocto-stable_git.bbappend index 3a893f64..6a0cfd22 100644 --- a/meta-n450/recipes-kernel/linux/linux-yocto-stable_git.bbappend +++ b/meta-n450/recipes-kernel/linux/linux-yocto-stable_git.bbappend @@ -1,5 +1,5 @@ FILESEXTRAPATHS := "${THISDIR}/${PN}" -WRMACHINE_n450 = "atom-pc" +KMACHINE_n450 = "atom-pc" COMPATIBLE_MACHINE_n450 = "n450" SRCREV="${AUTOREV}" |