blob: c6b4b49bd7438cca9059c86c885f6b74985204b8 [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 Geissler8827d4c2023-10-02 13:02:09 -050020VIRTUAL-RUNTIME_obmc-sensors-hwmon = "dbus-sensors"
21
Andrew Geissler1edbdd42023-09-14 08:33:24 -040022OBMC_POWER_SUPPLY_INSTANCES = "0 1 2 3"
23FLASH_SIZE = "16777216"
24SERIAL_CONSOLES = "115200;ttyS0"
25
26FIT_HASH_ALG = "sha512"
27FIT_SIGN_ALG = "rsa4096"
28FIT_SIGN_NUMBITS = "4096"
29UBOOT_FITIMAGE_ENABLE = "1"
30UBOOT_FIT_HASH_ALG = "sha512"
31UBOOT_FIT_SIGN_ALG = "rsa4096"
32UBOOT_FIT_SIGN_NUMBITS = "4096"
33
34# TODO: Enable signing at a later date
35SOCSEC_SIGN_ENABLE = "0"
36
37PACKAGECONFIG:pn-opkg = "curl openssl ssl-curl"