diff options
author | chenzanxi <chenzanxi@huaqin.corp-partner.google.com> | 2021-02-24 19:14:04 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-02-26 07:07:57 +0000 |
commit | f7407eaf02c3e131949d9f90993114e25f687516 (patch) | |
tree | 75c40bd06ceb4fd5d3623b00df0842241920eb2e /src/mainboard/google/dedede/variants/blipper/include | |
parent | 9a446bdf0700d578e4504adf19aebc0ecc4be491 (diff) |
mb/google/dedede: Create blipper variant
Create the blipper 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:179648964
BRANCH=None
TEST=util/abuild/abuild -p none -t google/dedede -x -a
make sure the build includes GOOGLE_BLIPPER
Signed-off-by: chenzanxi <chenzanxi@huaqin.corp-partner.google.com>
Change-Id: I8e67521bd9ab05c257cb3d5d5d4cf506f258bfa7
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51055
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tao Xia <xiatao5@huaqin.corp-partner.google.com>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Diffstat (limited to 'src/mainboard/google/dedede/variants/blipper/include')
-rw-r--r-- | src/mainboard/google/dedede/variants/blipper/include/variant/ec.h | 8 | ||||
-rw-r--r-- | src/mainboard/google/dedede/variants/blipper/include/variant/gpio.h | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/mainboard/google/dedede/variants/blipper/include/variant/ec.h b/src/mainboard/google/dedede/variants/blipper/include/variant/ec.h new file mode 100644 index 0000000000..08870e0627 --- /dev/null +++ b/src/mainboard/google/dedede/variants/blipper/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/blipper/include/variant/gpio.h b/src/mainboard/google/dedede/variants/blipper/include/variant/gpio.h new file mode 100644 index 0000000000..9078664608 --- /dev/null +++ b/src/mainboard/google/dedede/variants/blipper/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 */ |