blob: 38475faf79f63df88ed07554e7577568b5aa3ec7 [file] [log] [blame]
Andrew Geissler1edbdd42023-09-14 08:33:24 -04001# TODO: Enable real device tree once available
2#KERNEL_DEVICETREE = "aspeed-bmc-ibm-system1.dtb"
3KERNEL_DEVICETREE = "aspeed/aspeed-ast2600-evb.dtb"
4
5UBOOT_MACHINE = "ast2600_openbmc_spl_emmc_defconfig"
6# Enable real device tree once available
7#UBOOT_DEVICETREE = "ast2600-system1"
8UBOOT_DEVICETREE = "ast2600-p10bmc"
9SPL_BINARY = "spl/u-boot-spl.bin"
10
11require conf/distro/include/phosphor-mmc.inc
12require conf/machine/include/ast2600.inc
13require conf/machine/include/obmc-bsp-common.inc
14include conf/distro/include/extra-dev-debug-tools.inc
15
Andrew Geisslerc3a78932023-09-18 13:08:54 -050016MACHINE_FEATURES += "\
17 obmc-phosphor-chassis-mgmt \
18 "
19
Andrew Geissler1edbdd42023-09-14 08:33:24 -040020OBMC_POWER_SUPPLY_INSTANCES = "0 1 2 3"
21FLASH_SIZE = "16777216"
22SERIAL_CONSOLES = "115200;ttyS0"
23
24FIT_HASH_ALG = "sha512"
25FIT_SIGN_ALG = "rsa4096"
26FIT_SIGN_NUMBITS = "4096"
27UBOOT_FITIMAGE_ENABLE = "1"
28UBOOT_FIT_HASH_ALG = "sha512"
29UBOOT_FIT_SIGN_ALG = "rsa4096"
30UBOOT_FIT_SIGN_NUMBITS = "4096"
31
32# TODO: Enable signing at a later date
33SOCSEC_SIGN_ENABLE = "0"
34
35PACKAGECONFIG:pn-opkg = "curl openssl ssl-curl"