diff options
author | Simon Glass | 2023-07-30 21:01:52 -0600 |
---|---|---|
committer | Bin Meng | 2023-08-09 23:31:12 +0800 |
commit | 876bc404bdcdce8b1a16837a940ae36dc4425e5f (patch) | |
tree | c7ffc384be825827f5deb25b3d3f8ae15bf51f97 /include/env/x86.env | |
parent | f726545a62aba1e56f33afc8d95cb76e55720896 (diff) |
x86: Add a common include for environment settings
Create a text-file version of x86-common.h which can be used by x86
boards.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> # Intel Edison
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/env/x86.env')
-rw-r--r-- | include/env/x86.env | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/env/x86.env b/include/env/x86.env new file mode 100644 index 00000000000..d00d98f70a1 --- /dev/null +++ b/include/env/x86.env @@ -0,0 +1,20 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ + +/* + * Copyright (c) 2011 The Chromium OS Authors. + * (C) Copyright 2008 + * Graeme Russ, graeme.russ@gmail.com + */ + +pciconfighost=1 +netdev=eth0 +consoledev=ttyS0 +scriptaddr=0x7000000 +kernel_addr_r=0x1000000 +ramdisk_addr_r=0x4000000 +ramdiskfile=initramfs.gz + +/* common console settings */ +stdin=serial,i8042-kbd,usbkbd +stdout=serial,vidconsole +stderr=serial,vidconsole |