upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
566 B
29 lines
566 B
/*
|
|
* Copyright (c) 2015 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#include <configs/x86-common.h>
|
|
|
|
#undef CONFIG_CMD_SF_TEST
|
|
|
|
#undef CONFIG_TPM_TIS_BASE_ADDRESS
|
|
|
|
#undef CONFIG_ENV_IS_IN_SPI_FLASH
|
|
#define CONFIG_ENV_IS_NOWHERE
|
|
#undef CONFIG_VIDEO
|
|
#undef CONFIG_CFB_CONSOLE
|
|
#undef CONFIG_SCSI_AHCI
|
|
#undef CONFIG_CMD_SCSI
|
|
#undef CONFIG_INTEL_ICH6_GPIO
|
|
#undef CONFIG_USB_EHCI_PCI
|
|
|
|
#define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,vga,serial\0" \
|
|
"stdout=vga,serial\0" \
|
|
"stderr=vga,serial\0"
|
|
|
|
#endif
|
|
|