diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2018-10-07 20:53:40 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2018-10-08 21:30:10 -0400 |
commit | b7e46d8a053f7b3ba4c4d51c65ba735e67a50674 (patch) | |
tree | f4d15f6607e7173f744a25f965172d9ef1d2577c /projects/coreboot/configs/t400/textmode | |
parent | bd40887998461cb3b5966dbcc981003944b4abee (diff) | |
download | librebootfr-b7e46d8a053f7b3ba4c4d51c65ba735e67a50674.tar.gz librebootfr-b7e46d8a053f7b3ba4c4d51c65ba735e67a50674.zip |
Create 4,8,16mb Coreboot configs/targets for T400
These configurations are intended to be read and supplied to make as
command-line arguments and override those defined in the config at
projects/coreboot/configs/{corebootfb,textmode}/config
For now, these configs do nothing--subsequent commits will add this
overriding functionality.
T400 Coreboot ROMs can be built with
'./libreboot build coreboot t400 corebootfb 8mb', for example, though
the last argument specifying flash chip size does nothing currently.
Diffstat (limited to 'projects/coreboot/configs/t400/textmode')
4 files changed, 21 insertions, 0 deletions
diff --git a/projects/coreboot/configs/t400/textmode/16mb/config b/projects/coreboot/configs/t400/textmode/16mb/config new file mode 100644 index 00000000..6ea330af --- /dev/null +++ b/projects/coreboot/configs/t400/textmode/16mb/config @@ -0,0 +1,6 @@ +CONFIG_CBFS_SIZE=0xFFD000 +CONFIG_IFD_BIN_PATH="$(obj)/../ich9gen/ich9fdgbe_16m.bin" +CONFIG_COREBOOT_ROMSIZE_KB_8192=n +CONFIG_COREBOOT_ROMSIZE_KB_16384=y +CONFIG_COREBOOT_ROMSIZE_KB=16384 +CONFIG_ROM_SIZE=0x1000000 diff --git a/projects/coreboot/configs/t400/textmode/4mb/config b/projects/coreboot/configs/t400/textmode/4mb/config new file mode 100644 index 00000000..ea998f4c --- /dev/null +++ b/projects/coreboot/configs/t400/textmode/4mb/config @@ -0,0 +1,6 @@ +CONFIG_CBFS_SIZE=0x3FD000 +CONFIG_IFD_BIN_PATH="$(obj)/../ich9gen/ich9fdgbe_4m.bin" +CONFIG_COREBOOT_ROMSIZE_KB_8192=n +CONFIG_COREBOOT_ROMSIZE_KB_4096=y +CONFIG_COREBOOT_ROMSIZE_KB=4096 +CONFIG_ROM_SIZE=0x400000 diff --git a/projects/coreboot/configs/t400/textmode/8mb/config b/projects/coreboot/configs/t400/textmode/8mb/config new file mode 100644 index 00000000..c07a65f3 --- /dev/null +++ b/projects/coreboot/configs/t400/textmode/8mb/config @@ -0,0 +1,6 @@ +CONFIG_CBFS_SIZE=0x7FD000 +CONFIG_IFD_BIN_PATH="$(obj)/../ich9gen/ich9fdgbe_8m.bin" +CONFIG_BOARD_ROMSIZE_KB_8192=y +CONFIG_COREBOOT_ROMSIZE_KB_8192=y +CONFIG_COREBOOT_ROMSIZE_KB=8192 +CONFIG_ROM_SIZE=0x800000 diff --git a/projects/coreboot/configs/t400/textmode/targets b/projects/coreboot/configs/t400/textmode/targets new file mode 100644 index 00000000..4d24a91a --- /dev/null +++ b/projects/coreboot/configs/t400/textmode/targets @@ -0,0 +1,3 @@ +16mb +4mb +8mb |