mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
63b7ccbf9f
Drop use of the distro boot script and use standard boot instead. Moving to a text-based environment would be desirable also, but requires additional work. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
27 lines
603 B
C
27 lines
603 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
*/
|
|
|
|
/*
|
|
* board/config.h - configuration options, board specific
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
#include <configs/x86-common.h>
|
|
|
|
#define CFG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd\0" \
|
|
"stdout=serial,vidconsole\0" \
|
|
"stderr=serial,vidconsole\0"
|
|
|
|
/*
|
|
* ATA/SATA support for QEMU x86 targets
|
|
* - Only legacy IDE controller is supported for QEMU '-M pc' target
|
|
* - AHCI controller is supported for QEMU '-M q35' target
|
|
*/
|
|
|
|
#endif /* __CONFIG_H */
|