aboutsummaryrefslogtreecommitdiff
path: root/include/bootflow.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-12-09 13:16:14 -0500
committerTom Rini <trini@konsulko.com>2023-12-09 13:16:14 -0500
commitdd29208815bae293df1ac1bfb8f298a541f5bd4d (patch)
tree98bf4c88c4ccbfa54df643096976b4d6fccec69d /include/bootflow.h
parent6bfd07bf64b935977826cc84cde994ab0bed80fb (diff)
parent37503b0c0c042b07eed377baf587fdbabdb46dd9 (diff)
Merge patch series "bootflow: bootmeth_efi: Fix network efi boot."
To quote the author: Currently bootmeth_efi crashes while doing a network (dhcp) boot. This patch series fixes issues and both network and disk boot works. # Do not modify or remove the line above. # Everything below it will be ignored. # # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # An empty message aborts the commit.
Diffstat (limited to 'include/bootflow.h')
-rw-r--r--include/bootflow.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/bootflow.h b/include/bootflow.h
index fede8f22a2..42112874f6 100644
--- a/include/bootflow.h
+++ b/include/bootflow.h
@@ -45,10 +45,12 @@ enum bootflow_state_t {
* CONFIG_OF_HAS_PRIOR_STAGE is enabled
* @BOOTFLOWF_STATIC_BUF: Indicates that @bflow->buf is statically set, rather
* than being allocated by malloc().
+ * @BOOTFLOWF_USE_BUILTIN_FDT : Indicates that current bootflow uses built-in FDT
*/
enum bootflow_flags_t {
BOOTFLOWF_USE_PRIOR_FDT = 1 << 0,
BOOTFLOWF_STATIC_BUF = 1 << 1,
+ BOOTFLOWF_USE_BUILTIN_FDT = 1 << 2,
};
/**