blob: 22374752da182d033977978bbb379584265bda7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#@TYPE: Machine
#@NAME: Aspeed AST2400
#@DESCRIPTION: Common machine configuration for the Aspeed AST2400 Chip
require conf/machine/include/aspeed.inc
UBOOT_MACHINE ?= "ast_g4_ncsi_config"
UBOOT_ENTRYPOINT ?= "0x40001000"
UBOOT_LOADADDRESS ?= "0x40001000"
MACHINE_EXTRA_RDEPENDS += "udev-aspeed-vuart"
SERIAL_CONSOLES = "115200;ttyS4"
SOC_FAMILY = "aspeed-g4"
include conf/machine/include/soc-family.inc
MACHINEOVERRIDES .= ":ast2400"
require conf/machine/include/tune-arm926ejs.inc
|