diff options
author | Simon Glass <sjg@chromium.org> | 2023-08-14 16:40:30 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-08-25 13:54:33 -0400 |
commit | 2045ca5c1f51d054579d0886184b6f245b8a134e (patch) | |
tree | 7e32988a9c404ecda6b1004d11ed676bd840b84c /cmd | |
parent | c5aacf5ef87610d92bf0651b2a935c37778768d2 (diff) | |
download | u-boot-2045ca5c1f51d054579d0886184b6f245b8a134e.zip u-boot-2045ca5c1f51d054579d0886184b6f245b8a134e.tar.gz u-boot-2045ca5c1f51d054579d0886184b6f245b8a134e.tar.bz2 |
expo: Move cedit theme under bootstd
This is related to standard boot, so put it under the same node. This may
simplify schema upstreaming later.
Mention themes in the documentation while we are here.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/cedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/cedit.c b/cmd/cedit.c index 5f0e844..e98121b 100644 --- a/cmd/cedit.c +++ b/cmd/cedit.c @@ -65,7 +65,7 @@ static int do_cedit_run(struct cmd_tbl *cmdtp, int flag, int argc, return CMD_RET_FAILURE; } - node = ofnode_path("/cedit-theme"); + node = ofnode_path("/bootstd/cedit-theme"); if (ofnode_valid(node)) { ret = expo_apply_theme(cur_exp, node); if (ret) |