mb/google/brya: Create moli variant
Create the moli variant of the brask reference board by copying the template files to a new directory named for the variant. (Auto-Generated by create_coreboot_variant.sh version 4.5.0). BUG=b:214439135 BRANCH=None TEST=util/abuild/abuild -p none -t google/brya -x -a make sure the build includes GOOGLE_MOLI Signed-off-by: Raihow Shi <raihow_shi@wistron.corp-partner.google.com> Change-Id: I3f3bfd3db12cba8b73b351e7c700b6a58797c906 Reviewed-on: https://review.coreboot.org/c/coreboot/+/61766 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Zhuohao Lee <zhuohao@google.com>
This commit is contained in:
parent
8ad51a8abf
commit
47318c923e
|
@ -160,6 +160,7 @@ config MAINBOARD_PART_NUMBER
|
|||
default "Volmar" if BOARD_GOOGLE_VOLMAR
|
||||
default "Banshee" if BOARD_GOOGLE_BANSHEE
|
||||
default "Crota" if BOARD_GOOGLE_CROTA
|
||||
default "Moli" if BOARD_GOOGLE_MOLI
|
||||
|
||||
config VARIANT_DIR
|
||||
default "brya0" if BOARD_GOOGLE_BRYA0
|
||||
|
@ -185,6 +186,7 @@ config VARIANT_DIR
|
|||
default "volmar" if BOARD_GOOGLE_VOLMAR
|
||||
default "banshee" if BOARD_GOOGLE_BANSHEE
|
||||
default "crota" if BOARD_GOOGLE_CROTA
|
||||
default "moli" if BOARD_GOOGLE_MOLI
|
||||
|
||||
config VBOOT
|
||||
select VBOOT_EARLY_EC_SYNC
|
||||
|
|
|
@ -164,3 +164,7 @@ config BOARD_GOOGLE_BANSHEE
|
|||
config BOARD_GOOGLE_CROTA
|
||||
bool "-> Crota"
|
||||
select BOARD_GOOGLE_BASEBOARD_BRYA
|
||||
|
||||
config BOARD_GOOGLE_MOLI
|
||||
bool "-> Moli"
|
||||
select BOARD_GOOGLE_BASEBOARD_BRASK
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
#ifndef __VARIANT_EC_H__
|
||||
#define __VARIANT_EC_H__
|
||||
|
||||
#include <baseboard/ec.h>
|
||||
|
||||
#endif
|
|
@ -0,0 +1,8 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
#ifndef VARIANT_GPIO_H
|
||||
#define VARIANT_GPIO_H
|
||||
|
||||
#include <baseboard/gpio.h>
|
||||
|
||||
#endif
|
|
@ -0,0 +1,6 @@
|
|||
chip soc/intel/alderlake
|
||||
|
||||
device domain 0 on
|
||||
end
|
||||
|
||||
end
|
Loading…
Reference in New Issue