1560fbf6d6
SeaBIOS 1.10.2 was released on February 28th, 2017 [1][2] with the changes below. ``` $ git log --oneline rel-1.10.1..rel-1.10.2 5f4c7b1 QEMU fw_cfg: Write fw_cfg back on S3 resume c45ca70 QEMU fw_cfg: Add functions for accessing files by key 31b6229 QEMU fw_cfg: Add command to write back address of file aa7219d romfile-loader: Switch to using named structs 2a1d88c QEMU DMA: Add DMA write capability d2ac564 ps2port: Disable keyboard/mouse prior to resetting ps2 controller b0e3c67 vgasrc: Increase debug level ca3ab93 ahci: Set upper 32-bit registers to zero ``` This fixes the problem on a Lenovo X60, that the keyboard is not initialized by SeaBIOS when for example loaded from GRUB. [1] https://www.seabios.org/Releases#SeaBIOS_1.10.2 Change-Id: Idc078ffa896b2e105faabd2d8befeaf9a2a0b6ac Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-on: https://review.coreboot.org/19290 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
86 lines
2.7 KiB
Makefile
86 lines
2.7 KiB
Makefile
TAG-$(CONFIG_SEABIOS_MASTER)=origin/master
|
|
TAG-$(CONFIG_SEABIOS_STABLE)=5f4c7b13cdf9c450eb55645f4362ea58fa61b79b
|
|
TAG-$(CONFIG_SEABIOS_REVISION)=$(CONFIG_SEABIOS_REVISION_ID)
|
|
|
|
project_git_repo=https://review.coreboot.org/p/seabios.git
|
|
project_dir=seabios
|
|
|
|
unexport KCONFIG_AUTOHEADER
|
|
unexport KCONFIG_AUTOCONFIG
|
|
unexport KCONFIG_DEPENDENCIES
|
|
unexport KCONFIG_SPLITCONFIG
|
|
unexport KCONFIG_TRISTATE
|
|
unexport KCONFIG_NEGATIVES
|
|
|
|
all: build
|
|
|
|
seabios:
|
|
echo " Cloning SeaBIOS from Git"
|
|
git clone $(project_git_repo) $(project_dir)
|
|
|
|
fetch: seabios
|
|
ifeq ($(TAG-y),)
|
|
echo "Error: The specified tag is invalid"
|
|
ifeq ($(CONFIG_SEABIOS_REVISION),y)
|
|
echo "Error: There is no revision specified for SeaBIOS"
|
|
false
|
|
endif
|
|
false
|
|
endif
|
|
cd seabios; git show $(TAG-y) >/dev/null 2>&1 ; if [ $$? -ne 0 ] || \
|
|
[ "$(TAG-y)" = "origin/master" ]; then \
|
|
echo " Fetching new commits from the SeaBIOS git repo"; \
|
|
git fetch; fi
|
|
|
|
checkout: fetch
|
|
echo " Checking out SeaBIOS revision $(TAG-y)"
|
|
cd seabios; git checkout master; git branch -D coreboot 2>/dev/null; git checkout -b coreboot $(TAG-y)
|
|
|
|
config: checkout
|
|
echo " CONFIG SeaBIOS $(TAG-y)"
|
|
echo "CONFIG_COREBOOT=y" > seabios/.config
|
|
ifeq ($(CONFIG_CONSOLE_SERIAL)$(CONFIG_DRIVERS_UART_8250IO),yy)
|
|
echo "CONFIG_DEBUG_SERIAL=y" >> seabios/.config
|
|
echo "CONFIG_DEBUG_SERIAL_PORT=$(CONFIG_TTYS0_BASE)" >> seabios/.config
|
|
else ifeq ($(CONFIG_CONSOLE_SERIAL)$(CONFIG_DRIVERS_UART_8250MEM)$(CONFIG_HUDSON_UART),yyy)
|
|
echo "CONFIG_DEBUG_SERIAL_MMIO=y" >> seabios/.config
|
|
echo "CONFIG_DEBUG_SERIAL_MEM_ADDRESS=0xFEDC6000" >> seabios/.config
|
|
else
|
|
echo "# CONFIG_DEBUG_SERIAL is not set" >> seabios/.config
|
|
endif
|
|
ifneq ($(CONFIG_SEABIOS_THREAD_OPTIONROMS),y)
|
|
echo "# CONFIG_THREAD_OPTIONROMS is not set" >> seabios/.config
|
|
endif
|
|
ifeq ($(CONFIG_SEABIOS_VGA_COREBOOT),y)
|
|
echo "CONFIG_VGA_COREBOOT=y" >> seabios/.config
|
|
echo "CONFIG_BUILD_VGABIOS=y" >> seabios/.config
|
|
endif
|
|
ifneq ($(CONFIG_PAYLOAD_CONFIGFILE),)
|
|
ifneq ("$(wildcard $(CONFIG_PAYLOAD_CONFIGFILE))","")
|
|
cat $(CONFIG_PAYLOAD_CONFIGFILE) >> seabios/.config
|
|
else
|
|
echo "Error: File $(CONFIG_PAYLOAD_CONFIGFILE) does not exist"
|
|
false
|
|
endif
|
|
endif
|
|
ifneq ($(CONFIG_SEABIOS_DEBUG_LEVEL),-1)
|
|
echo "CONFIG_DEBUG_LEVEL=$(CONFIG_SEABIOS_DEBUG_LEVEL)" >> seabios/.config
|
|
endif
|
|
# This shows how to force a previously set .config option *off*
|
|
# echo "# CONFIG_SMBIOS is not set" >> seabios/.config
|
|
$(MAKE) -C seabios olddefconfig OUT=out/
|
|
|
|
build: config
|
|
echo " MAKE SeaBIOS $(TAG-y)"
|
|
$(MAKE) -C seabios OUT=out/
|
|
|
|
clean:
|
|
test -d seabios/out && rm -rf seabios/out || exit 0
|
|
|
|
distclean:
|
|
rm -rf seabios
|
|
|
|
print-repo-info:
|
|
echo "$(project_git_repo) $(project_dir)"
|
|
|
|
.PHONY: checkout config build clean distclean clone fetch print-repo-info
|