mirror of
git://git.yoctoproject.org/meta-rockchip.git
synced 2025-07-19 12:49:03 +02:00

KBUILD_DEFCONFIG already existed in the yocto project. When it is used with the kernel-yocto bbclass, it specifies an "in-tree" kernel configuration file for use during a kernel build. So instead of use our own variable we use the standard variable designed for that purpose Signed-off-by: Romain Perier <romain.perier@free-electrons.com>
24 lines
575 B
HTML
24 lines
575 B
HTML
# Copyright (C) 2014 NEO-Technologies
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
DEFAULTTUNE = "cortexa9-neon"
|
|
require conf/machine/include/tune-cortexa9.inc
|
|
|
|
PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
|
|
|
|
XSERVER = "xserver-xorg \
|
|
xf86-video-fbturbo \
|
|
xf86-input-evdev \
|
|
xf86-input-mouse \
|
|
xf86-input-keyboard"
|
|
|
|
PREFERRED_PROVIDER_virtual/kernel = "linux-rockchip-3.0"
|
|
|
|
KERNEL_IMAGETYPE = "zImage"
|
|
|
|
IMAGE_FSTYPES += "ext4"
|
|
|
|
SERIAL_CONSOLES ?= "115200;ttyFIQ0"
|
|
KBUILD_DEFCONFIG = "multi_v7_defconfig"
|
|
|