mirror of
https://git.yoctoproject.org/poky
synced 2026-06-11 01:53:47 +02:00
Build and boot for all these machines and also explicitly set the preferred kernel version for the x86 machines so that we can override the default setting in oe-core. (From meta-yocto rev: a93344439e01e8aba4ba15d3123ce31b4500add1) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
734 B
Plaintext
27 lines
734 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: Edgerouter
|
|
#@DESCRIPTION: Machine configuration for a generic edgerouter
|
|
|
|
require conf/machine/include/tune-mips64.inc
|
|
|
|
MACHINE_FEATURES = "pci ext2 ext3 serial"
|
|
|
|
KERNEL_IMAGETYPE = "vmlinux"
|
|
KERNEL_ALT_IMAGETYPE = "vmlinux.bin"
|
|
KERNEL_IMAGE_STRIP_EXTRA_SECTIONS = ".comment"
|
|
|
|
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
|
|
PREFERRED_VERSION_linux-yocto ?= "5.10%"
|
|
|
|
SERIAL_CONSOLES = "115200;ttyS0"
|
|
USE_VT ?= "0"
|
|
|
|
MACHINE_EXTRA_RRECOMMENDS = "kernel-modules"
|
|
|
|
IMAGE_FSTYPES ?= "jffs2 tar.bz2 wic wic.bmap"
|
|
JFFS2_ERASEBLOCK = "0x10000"
|
|
|
|
WKS_FILE ?= "edgerouter.wks"
|
|
IMAGE_BOOT_FILES ?= "vmlinux;vmlinux.64"
|
|
do_image_wic[depends] += "mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot"
|