mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-22 17:27:53 +00:00
HV: add board specific config header
Use a misc_cfg.h in each board configs folder so that VM configurations could include board specific MACROs; Tracked-On: #3214 Signed-off-by: Victor Sun <victor.sun@intel.com>
This commit is contained in:
15
hypervisor/arch/x86/configs/apl-mrb/misc_cfg.h
Normal file
15
hypervisor/arch/x86/configs/apl-mrb/misc_cfg.h
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef MISC_CFG_H
|
||||
#define MISC_CFG_H
|
||||
|
||||
#define ROOTFS_0 "root=/dev/sda3 "
|
||||
#define ROOTFS_1 "root=/dev/mmcblk1p1 "
|
||||
|
||||
#define SOS_CONSOLE "console=ttyS2 "
|
||||
|
||||
#endif /* MISC_CFG_H */
|
15
hypervisor/arch/x86/configs/apl-up2/misc_cfg.h
Normal file
15
hypervisor/arch/x86/configs/apl-up2/misc_cfg.h
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef MISC_CFG_H
|
||||
#define MISC_CFG_H
|
||||
|
||||
#define ROOTFS_0 "root=/dev/sda3 "
|
||||
#define ROOTFS_1 "root=/dev/mmcblk0p1 "
|
||||
|
||||
#define SOS_CONSOLE "console=ttyS0 "
|
||||
|
||||
#endif /* MISC_CFG_H */
|
14
hypervisor/arch/x86/configs/dnv-cb2/misc_cfg.h
Normal file
14
hypervisor/arch/x86/configs/dnv-cb2/misc_cfg.h
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef MISC_CFG_H
|
||||
#define MISC_CFG_H
|
||||
|
||||
#define ROOTFS_0 "root=/dev/sda3 "
|
||||
|
||||
#define SOS_CONSOLE "console=ttyS0 "
|
||||
|
||||
#endif /* MISC_CFG_H */
|
15
hypervisor/arch/x86/configs/generic/misc_cfg.h
Normal file
15
hypervisor/arch/x86/configs/generic/misc_cfg.h
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef MISC_CFG_H
|
||||
#define MISC_CFG_H
|
||||
|
||||
#define ROOTFS_0 "root=/dev/sda3 "
|
||||
#define ROOTFS_1 "root=/dev/mmcblk0p1 "
|
||||
|
||||
#define SOS_CONSOLE "console=ttyS0 "
|
||||
|
||||
#endif /* MISC_CFG_H */
|
14
hypervisor/arch/x86/configs/nuc6cayh/misc_cfg.h
Normal file
14
hypervisor/arch/x86/configs/nuc6cayh/misc_cfg.h
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef MISC_CFG_H
|
||||
#define MISC_CFG_H
|
||||
|
||||
#define ROOTFS_0 "root=/dev/sda3 "
|
||||
|
||||
#define SOS_CONSOLE "console=ttyS0 "
|
||||
|
||||
#endif /* MISC_CFG_H */
|
15
hypervisor/arch/x86/configs/nuc7i7bnh/misc_cfg.h
Normal file
15
hypervisor/arch/x86/configs/nuc7i7bnh/misc_cfg.h
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef MISC_CFG_H
|
||||
#define MISC_CFG_H
|
||||
|
||||
#define ROOTFS_0 "root=/dev/sda3 "
|
||||
#define ROOTFS_1 "root=/dev/nvme0n1p3 "
|
||||
|
||||
#define SOS_CONSOLE "console=ttyS0 "
|
||||
|
||||
#endif /* MISC_CFG_H */
|
Reference in New Issue
Block a user