aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/rex/bootblock.c
diff options
context:
space:
mode:
authorEric Lai <eric_lai@quanta.corp-partner.google.com>2022-05-23 15:47:20 +0800
committerSubrata Banik <subratabanik@google.com>2022-07-01 07:23:19 +0000
commitf6c52f46846b4d6157bc1cddbadbbece8a872afc (patch)
treecb76e1c8c85ae35d8ee777905ae5753bf5838d1f /src/mainboard/google/rex/bootblock.c
parent03b392355c84a5c868a96470e1b96e3d422fb85a (diff)
mb/google/rex: Add entry stubs of each stage
Add entry point stubs of each stage for Rex. More functionalities will be added later. BUG=b:224325352 TEST=util/abuild/abuild -p none -t google/rex -a -c max Signed-off-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Change-Id: I2310e58ab92bdb0ce86a9f7284cc0b3e04a2889f Reviewed-on: https://review.coreboot.org/c/coreboot/+/64591 Reviewed-by: Tarun Tuli <taruntuli@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/rex/bootblock.c')
-rw-r--r--src/mainboard/google/rex/bootblock.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mainboard/google/rex/bootblock.c b/src/mainboard/google/rex/bootblock.c
new file mode 100644
index 0000000000..8a7b93a968
--- /dev/null
+++ b/src/mainboard/google/rex/bootblock.c
@@ -0,0 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#include <bootblock_common.h>
+
+void bootblock_mainboard_init(void)
+{
+ /* TODO: Perform mainboard initialization */
+}