blob: 33263a46a40717865f433dc98065a07bdc165313 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Bin Menga65b25d2015-05-07 21:34:08 +08002/*
3 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
Bin Menga65b25d2015-05-07 21:34:08 +08004 */
5
6/*
7 * board/config.h - configuration options, board specific
8 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
Joshua Watt00f237e2019-07-03 12:45:32 -050013#include <linux/sizes.h>
14
15#define BOOT_TARGET_DEVICES(func) \
16 func(USB, usb, 0) \
17 func(SCSI, scsi, 0) \
18 func(VIRTIO, virtio, 0) \
19 func(IDE, ide, 0) \
20 func(DHCP, dhcp, na)
21
22#include <config_distro_bootcmd.h>
Bin Menga65b25d2015-05-07 21:34:08 +080023#include <configs/x86-common.h>
24
Tom Rinie02e5e52022-12-04 10:13:56 -050025#define CFG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd\0" \
Bin Mengfcda8c32016-10-09 04:14:13 -070026 "stdout=serial,vidconsole\0" \
27 "stderr=serial,vidconsole\0"
Bin Menga65b25d2015-05-07 21:34:08 +080028
Bin Meng2aa3a7f2015-05-16 09:33:19 +080029/*
30 * ATA/SATA support for QEMU x86 targets
31 * - Only legacy IDE controller is supported for QEMU '-M pc' target
32 * - AHCI controller is supported for QEMU '-M q35' target
Bin Meng2aa3a7f2015-05-16 09:33:19 +080033 */
Bin Meng2aa3a7f2015-05-16 09:33:19 +080034
Bin Menga65b25d2015-05-07 21:34:08 +080035#endif /* __CONFIG_H */