From 32d14f56fac4f82e5c07eb483cd0bc7ac6e8c022 Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Sun, 13 Dec 2015 17:29:26 -0500 Subject: delete coreinfo --- (limited to 'resources') diff --git a/resources/grub/config/menuentries/txtmode.cfg b/resources/grub/config/menuentries/txtmode.cfg index d64ca55..6779fdf 100644 --- a/resources/grub/config/menuentries/txtmode.cfg +++ b/resources/grub/config/menuentries/txtmode.cfg @@ -2,7 +2,3 @@ menuentry 'Load MemTest86+ [m]' --hotkey='m' { set root='memdisk' linux16 /memtest.bin } -menuentry 'Load Coreinfo [i]' --hotkey='i' { - set root='cbfsdisk' - chainloader /coreinfo.elf -} diff --git a/resources/libreboot/config/coreinfo/config b/resources/libreboot/config/coreinfo/config deleted file mode 100644 index f31083a..0000000 --- a/resources/libreboot/config/coreinfo/config +++ /dev/null @@ -1,26 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# coreinfo Configuration -# - -# -# General settings -# -CONFIG_SHOW_DATE_TIME=y -CONFIG_PAYLOAD_INFO_NAME="coreinfo" -CONFIG_PAYLOAD_INFO_LISTNAME="System Information" -CONFIG_PAYLOAD_INFO_DESC="Display information about the system" -CONFIG_PAYLOAD_INFO_VERSION="0.1" - -# -# Modules -# -CONFIG_MODULE_COREBOOT=y -CONFIG_MODULE_MULTIBOOT=y -CONFIG_MODULE_CPUINFO=y -CONFIG_MODULE_PCI=y -CONFIG_MODULE_NVRAM=y -CONFIG_MODULE_BOOTLOG=y -CONFIG_MODULE_RAMDUMP=y -# CONFIG_MODULE_LAR is not set -CONFIG_MODULE_CBFS=y diff --git a/resources/libreboot/config/libpayload/config b/resources/libreboot/config/libpayload/config deleted file mode 100644 index 6388fb3..0000000 --- a/resources/libreboot/config/libpayload/config +++ /dev/null @@ -1,83 +0,0 @@ -# -# Automatically generated file; DO NOT EDIT. -# Libpayload Configuration -# - -# -# Generic Options -# -CONFIG_LP_GPL=y -# CONFIG_LP_EXPERIMENTAL is not set -# CONFIG_LP_DEVELOPER is not set -CONFIG_LP_COMPILER_GCC=y -# CONFIG_LP_COMPILER_LLVM_CLANG is not set -# CONFIG_LP_REMOTEGDB is not set -# CONFIG_LP_CHROMEOS is not set - -# -# Architecture Options -# -# CONFIG_LP_ARCH_ARM is not set -CONFIG_LP_ARCH_X86=y -# CONFIG_LP_ARCH_ARM64 is not set -# CONFIG_LP_ARCH_MIPS is not set -# CONFIG_LP_MEMMAP_RAM_ONLY is not set -CONFIG_LP_MULTIBOOT=y - -# -# Standard Libraries -# -CONFIG_LP_LIBC=y -CONFIG_LP_CURSES=y -CONFIG_LP_TINYCURSES=y -# CONFIG_LP_PDCURSES is not set -CONFIG_LP_CBFS=y -CONFIG_LP_LZMA=y -CONFIG_LP_LZ4=y - -# -# Console Options -# -# CONFIG_LP_SKIP_CONSOLE_INIT is not set -CONFIG_LP_CBMEM_CONSOLE=y -# CONFIG_LP_SERIAL_CONSOLE is not set -CONFIG_LP_VIDEO_CONSOLE=y -CONFIG_LP_VGA_VIDEO_CONSOLE=y -# CONFIG_LP_GEODELX_VIDEO_CONSOLE is not set -CONFIG_LP_COREBOOT_VIDEO_CONSOLE=y -CONFIG_LP_PC_KEYBOARD=y -CONFIG_LP_PC_KEYBOARD_LAYOUT_US=y -# CONFIG_LP_PC_KEYBOARD_LAYOUT_DE is not set - -# -# Drivers -# -CONFIG_LP_PCI=y -CONFIG_LP_NVRAM=y -# CONFIG_LP_RTC_PORT_EXTENDED_VIA is not set -CONFIG_LP_SPEAKER=y -CONFIG_LP_STORAGE=y -# CONFIG_LP_STORAGE_64BIT_LBA is not set -CONFIG_LP_STORAGE_ATA=y -CONFIG_LP_STORAGE_ATAPI=y -CONFIG_LP_STORAGE_AHCI=y -CONFIG_LP_STORAGE_AHCI_ONLY_TESTED=y -CONFIG_LP_TIMER_RDTSC=y -CONFIG_LP_USB=y -# CONFIG_LP_USB_UHCI is not set -# CONFIG_LP_USB_OHCI is not set -CONFIG_LP_USB_EHCI=y -CONFIG_LP_USB_XHCI=y -# CONFIG_LP_USB_XHCI_MTK_QUIRK is not set -# CONFIG_LP_USB_DWC2 is not set -CONFIG_LP_USB_HID=y -CONFIG_LP_USB_HUB=y -# CONFIG_LP_USB_EHCI_HOSTPC_ROOT_HUB_TT is not set -CONFIG_LP_USB_MSC=y -CONFIG_LP_USB_GEN_HUB=y -CONFIG_LP_USB_PCI=y -# CONFIG_LP_UDC is not set -# CONFIG_LP_BIG_ENDIAN is not set -CONFIG_LP_LITTLE_ENDIAN=y -CONFIG_LP_IO_ADDRESS_SPACE=y -CONFIG_LP_ARCH_SPECIFIC_OPTIONS=y diff --git a/resources/scripts/helpers/build/clean/coreinfo b/resources/scripts/helpers/build/clean/coreinfo deleted file mode 100755 index 951ef61..0000000 --- a/resources/scripts/helpers/build/clean/coreinfo +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -# helper script: clean the coreinfo payload and its dependeny libpayload -# -# Copyright (C) 2015 Klemens Nanni -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# - -# This script assumes that the current working directory is the root -# of git or release archive - -[ "x${DEBUG+set}" = 'xset' ] && set -v -set -u -e - -# clean coreinfo and libpayload: - -printf "Cleaning coreinfo and libpayload\n" - -# clean coreboot and crossgcc (source archives preserved) -make -C coreboot/payloads/libpayload distclean -make -C coreboot/payloads/coreinfo distclean - -printf "\n\n" diff --git a/resources/scripts/helpers/build/module/coreinfo b/resources/scripts/helpers/build/module/coreinfo deleted file mode 100755 index b133643..0000000 --- a/resources/scripts/helpers/build/module/coreinfo +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -# helper script: builds coreinfo payload and it's dependency libpayload -# -# Copyright (C) 2015 Klemens Nanni -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# - -# This script assumes that the working directory is the root -# of git or release archive - -[ "x${DEBUG+set}" = 'xset' ] && set -v -set -u -e - -printf "Building the coreinfo payload\n" - -( -cd coreboot/ - -# Build libpayload first -cp ../resources/libreboot/config/libpayload/config payloads/libpayload/.config -make -j"$(nproc)" -BC payloads/libpayload install LIB_CONFIG=../resources/libreboot/config/libpayload/config - -# Build coreinfo itself -cp ../resources/libreboot/config/coreinfo/config payloads/coreinfo/.config -make -j"$(nproc)" -BC payloads/coreinfo KBUILD_DEFCONFIG='configs/defconfig-tinycurses' -) -- cgit v0.9.1