6b5bc77c9b
Stefan thinks they don't add value. Command used: sed -i -e '/file is part of /d' $(git grep "file is part of " |egrep ":( */\*.*\*/\$|#|;#|-- | *\* )" | cut -d: -f1 |grep -v crossgcc |grep -v gcov | grep -v /elf.h |grep -v nvramtool) The exceptions are for: - crossgcc (patch file) - gcov (imported from gcc) - elf.h (imported from GNU's libc) - nvramtool (more complicated header) The removed lines are: - fmt.Fprintln(f, "/* This file is part of the coreboot project. */") -# This file is part of a set of unofficial pre-commit hooks available -/* This file is part of coreboot */ -# This file is part of msrtool. -/* This file is part of msrtool. */ - * This file is part of ncurses, designed to be appended after curses.h.in -/* This file is part of pgtblgen. */ - * This file is part of the coreboot project. - /* This file is part of the coreboot project. */ -# This file is part of the coreboot project. -# This file is part of the coreboot project. -## This file is part of the coreboot project. --- This file is part of the coreboot project. -/* This file is part of the coreboot project */ -/* This file is part of the coreboot project. */ -;## This file is part of the coreboot project. -# This file is part of the coreboot project. It originated in the - * This file is part of the coreinfo project. -## This file is part of the coreinfo project. - * This file is part of the depthcharge project. -/* This file is part of the depthcharge project. */ -/* This file is part of the ectool project. */ - * This file is part of the GNU C Library. - * This file is part of the libpayload project. -## This file is part of the libpayload project. -/* This file is part of the Linux kernel. */ -## This file is part of the superiotool project. -/* This file is part of the superiotool project */ -/* This file is part of uio_usbdebug */ Change-Id: I82d872b3b337388c93d5f5bf704e9ee9e53ab3a9 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41194 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
103 lines
2.3 KiB
Text
103 lines
2.3 KiB
Text
##
|
|
##
|
|
## Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de>
|
|
##
|
|
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
# see http://lxr.linux.no/source/Documentation/kbuild/kconfig-language.txt.
|
|
#
|
|
|
|
mainmenu "coreinfo Configuration"
|
|
|
|
menu "General settings"
|
|
|
|
# TODO: Needs changes in coreinfo, won't update without keypress currently.
|
|
config SHOW_DATE_TIME
|
|
bool "Show current date/time in the menu"
|
|
default y
|
|
help
|
|
Show the current date and time in the lower-right corner of
|
|
the coreinfo menu.
|
|
|
|
This option will increase the ELF file size by ca. 250 bytes.
|
|
|
|
config PAYLOAD_INFO_NAME
|
|
string "Payload name"
|
|
default "coreinfo"
|
|
help
|
|
The name of this payload for use in (e.g.) Bayou.
|
|
|
|
config PAYLOAD_INFO_LISTNAME
|
|
string "Payload menu entry name"
|
|
default "System Information"
|
|
help
|
|
The name of this payload's menu entry for use in (e.g.) Bayou.
|
|
|
|
config PAYLOAD_INFO_DESC
|
|
string "Payload description"
|
|
default "Display information about the system"
|
|
help
|
|
The description of this payload for use in (e.g.) Bayou.
|
|
|
|
config PAYLOAD_INFO_VERSION
|
|
string "Payload version"
|
|
default "0.1"
|
|
help
|
|
The version number of this payload.
|
|
|
|
endmenu
|
|
|
|
menu "Modules"
|
|
|
|
config MODULE_COREBOOT
|
|
bool "Enable the coreboot module"
|
|
default y
|
|
help
|
|
This option will increase the ELF file size by ca. 2250 bytes.
|
|
|
|
config MODULE_MULTIBOOT
|
|
bool "Enable the multiboot module"
|
|
default y
|
|
help
|
|
This option will increase the ELF file size by ca. 1790 bytes.
|
|
|
|
config MODULE_CPUINFO
|
|
bool "Enable the cpuinfo module"
|
|
default y
|
|
help
|
|
This option will increase the ELF file size by ca. 2650 bytes.
|
|
|
|
config MODULE_PCI
|
|
bool "Enable the PCI info module"
|
|
default y
|
|
help
|
|
This option will increase the ELF file size by ca. 1750 bytes.
|
|
|
|
config MODULE_NVRAM
|
|
bool "Enable the NVRAM dump module"
|
|
default y
|
|
help
|
|
This option will increase the ELF file size by ca. 350 bytes.
|
|
|
|
config MODULE_BOOTLOG
|
|
bool "Enable the coreboot bootlog module"
|
|
default y
|
|
|
|
config MODULE_RAMDUMP
|
|
bool "Enable the RAM dump module"
|
|
default y
|
|
|
|
config MODULE_CBFS
|
|
bool "Enable the coreboot CBFS module"
|
|
default y
|
|
help
|
|
This option will increase the ELF file size by ca. 1440 bytes.
|
|
|
|
config MODULE_TIMESTAMPS
|
|
bool "Enable the coreboot timestamps module"
|
|
default y
|
|
help
|
|
This option will increase the ELF file size by ca. 4200 bytes.
|
|
|
|
endmenu
|