2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-11-13 05:42:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
* (C) Copyright 2008
|
|
|
|
* Graeme Russ, graeme.russ@gmail.com.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* board/config.h - configuration options, board specific
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
|
|
|
#include <configs/x86-common.h>
|
2015-03-02 19:40:53 +00:00
|
|
|
#include <configs/x86-chromebook.h>
|
2014-11-13 05:42:07 +00:00
|
|
|
|
2015-03-31 03:51:04 +00:00
|
|
|
#define CONFIG_ENV_SECT_SIZE 0x1000
|
|
|
|
#define CONFIG_ENV_OFFSET 0x003f8000
|
|
|
|
|
2017-01-16 14:04:25 +00:00
|
|
|
#define CONFIG_SPL_BOARD_LOAD_IMAGE
|
|
|
|
|
2014-11-13 05:42:07 +00:00
|
|
|
#endif /* __CONFIG_H */
|