summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Fair <benjaminfair@google.com>2022-10-04 02:29:07 +0300
committerWilliam A. Kennington III <wak@google.com>2022-10-05 01:39:28 +0300
commitc1b7e80e250c3e8c9ddbe3ce0334ec8b5a03a075 (patch)
tree68c44808074e96d2161b7406906c2e3b64bd102e
parent8dd68484e26c2924fcc0eeda4d024b0116115009 (diff)
downloadopenbmc-c1b7e80e250c3e8c9ddbe3ce0334ec8b5a03a075.tar.xz
meta-google: image_types_hoth: fix syntax error
The close parenthesis was misplaced causing the first if statement to always be skipped. Tested: Built for 64-bit platform and inspected cr51-image-layout.json Signed-off-by: Benjamin Fair <benjaminfair@google.com> Change-Id: If3dacd917ae26908ef0d4c98866b58051176dea1
-rw-r--r--meta-google/classes/image_types_hoth.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-google/classes/image_types_hoth.bbclass b/meta-google/classes/image_types_hoth.bbclass
index 79f23588d3..912b722246 100644
--- a/meta-google/classes/image_types_hoth.bbclass
+++ b/meta-google/classes/image_types_hoth.bbclass
@@ -84,7 +84,7 @@ python do_generate_layout () {
'hoth_mailbox',
d.getVar('FLASH_HOTH_MAILBOX_OFFSET'),
d.getVar('FLASH_SIZE')),
- ] if d.getVar('TARGET_ARCH' == "aarch64") else [
+ ] if d.getVar('TARGET_ARCH') == "aarch64" else [
convertPart(
'u_boot',
d.getVar('FLASH_UBOOT_OFFSET'),