diff options
author | David Wu <david_wu@quanta.corp-partner.google.com> | 2022-04-15 16:11:51 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-04-21 13:03:45 +0000 |
commit | eb327cb637ef825d2c057fb17562359a5f8a9113 (patch) | |
tree | 9cab3eee628595c5c426caa5585d928e4d218e6d /src/mainboard/google/brya/variants/osiris/include | |
parent | 170d33dba4148acc627ebc9049fa2b6b3cf7f003 (diff) |
mb/google/brya: Create osiris variant
Create the osiris variant of the brya0 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:229352299
BRANCH=None
TEST=util/abuild/abuild -p none -t google/brya -x -a
make sure the build includes GOOGLE_OSIRIS
Signed-off-by: David Wu <david_wu@quanta.corp-partner.google.com>
Change-Id: I41e088a3415add86cba87c919af23494f816bb24
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63650
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/brya/variants/osiris/include')
-rw-r--r-- | src/mainboard/google/brya/variants/osiris/include/variant/ec.h | 8 | ||||
-rw-r--r-- | src/mainboard/google/brya/variants/osiris/include/variant/gpio.h | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/mainboard/google/brya/variants/osiris/include/variant/ec.h b/src/mainboard/google/brya/variants/osiris/include/variant/ec.h new file mode 100644 index 0000000000..7a2a6ff8b7 --- /dev/null +++ b/src/mainboard/google/brya/variants/osiris/include/variant/ec.h @@ -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 diff --git a/src/mainboard/google/brya/variants/osiris/include/variant/gpio.h b/src/mainboard/google/brya/variants/osiris/include/variant/gpio.h new file mode 100644 index 0000000000..c4fe342621 --- /dev/null +++ b/src/mainboard/google/brya/variants/osiris/include/variant/gpio.h @@ -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 |