diff options
author | Tongtong Pan <pantongtong@huaqin.corp-partner.google.com> | 2024-07-08 21:06:00 +0800 |
---|---|---|
committer | Karthik Ramasubramanian <kramasub@google.com> | 2024-07-19 16:39:43 +0000 |
commit | add944ecebcc28f0ac21ccda6e07d22f4ab2ff0b (patch) | |
tree | f11ca8bba4fd2b3dbac8308e52d3d5076564e847 /src/mainboard/google/dedede/variants/awasuki/include | |
parent | 1236b1c603c9ff020fe3d963b5b84085fdee6837 (diff) |
mb/google/dedede: Create awasuki variant
Create the awasuki variant of the waddledee 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:351968527
BRANCH=None
TEST=util/abuild/abuild -p none -t google/dedede -x -a
make sure the build includes GOOGLE_AWASUKI
Change-Id: If18afc92afdbdff5df3f5b034f4357feda6690b0
Signed-off-by: Tongtong Pan <pantongtong@huaqin.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83376
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Dolan Liu <liuyong5@huaqin.corp-partner.google.com>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Diffstat (limited to 'src/mainboard/google/dedede/variants/awasuki/include')
-rw-r--r-- | src/mainboard/google/dedede/variants/awasuki/include/variant/ec.h | 8 | ||||
-rw-r--r-- | src/mainboard/google/dedede/variants/awasuki/include/variant/gpio.h | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/mainboard/google/dedede/variants/awasuki/include/variant/ec.h b/src/mainboard/google/dedede/variants/awasuki/include/variant/ec.h new file mode 100644 index 0000000000..08870e0627 --- /dev/null +++ b/src/mainboard/google/dedede/variants/awasuki/include/variant/ec.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef MAINBOARD_EC_H +#define MAINBOARD_EC_H + +#include <baseboard/ec.h> + +#endif diff --git a/src/mainboard/google/dedede/variants/awasuki/include/variant/gpio.h b/src/mainboard/google/dedede/variants/awasuki/include/variant/gpio.h new file mode 100644 index 0000000000..9078664608 --- /dev/null +++ b/src/mainboard/google/dedede/variants/awasuki/include/variant/gpio.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef MAINBOARD_GPIO_H +#define MAINBOARD_GPIO_H + +#include <baseboard/gpio.h> + +#endif /* MAINBOARD_GPIO_H */ |