blob: 30279e6ec27b274902b568035180522a5d05737a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#@TYPE: Machine
#@NAME: e3000
#@DESCRIPTION: Machine configuration for e3000 systems
require conf/machine/include/amdx86.inc
# Setup a getty on all serial ports
SERIAL_CONSOLES = "115200;ttyS4 115200;ttyS5"
# Enable the kernel console on ttyS4/COM0
KERNEL_SERIAL_CONSOLE ?= "console=ttyS4,115200n8"
# Add machine specific AMD features and feature pkgs here
EXTRA_IMAGE_FEATURES += "amd-feature-networking"
DPDK_PKGS = "${@bb.utils.contains("BBFILE_COLLECTIONS", "dpdk", "dpdk dpdk-examples dpdk-test", "", d)}"
|