diff options
author | Tom Rini <trini@konsulko.com> | 2023-01-20 14:21:38 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-01-20 14:21:38 -0500 |
commit | 0b9b01517f0b1398ec27dbb47faf3645b719e02c (patch) | |
tree | fac11441ba4056e75d3b59811da3b0a91d1cfcf5 /cmd/ximg.c | |
parent | 8bd3c0a7e17ee17c771cabc0e548a1a436ac021d (diff) | |
parent | 6333acb961b6fcaa60c6e5b623d676b332481cfa (diff) |
Merge branch '2023-01-20-finish-CONFIG-migration-work'
- Merge in the final batch of CONFIG to Kconfig/CFG migration work. This
includes a fix for a number of ns16550 or similar UARTs due to a
migration bug. We also pull in a revert for enabling CONFIG_VIDEO on
tools-only_defconfig.
Diffstat (limited to 'cmd/ximg.c')
-rw-r--r-- | cmd/ximg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/ximg.c b/cmd/ximg.c index 1c40fd27a0..60ed2c9f6f 100644 --- a/cmd/ximg.c +++ b/cmd/ximg.c @@ -27,9 +27,9 @@ #include <asm/cache.h> #include <asm/io.h> -#ifndef CONFIG_SYS_XIMG_LEN +#ifndef CFG_SYS_XIMG_LEN /* use 8MByte as default max gunzip size */ -#define CONFIG_SYS_XIMG_LEN 0x800000 +#define CFG_SYS_XIMG_LEN 0x800000 #endif static int @@ -52,7 +52,7 @@ do_imgextract(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) size_t fit_len; #endif #ifdef CONFIG_GZIP - uint unc_len = CONFIG_SYS_XIMG_LEN; + uint unc_len = CFG_SYS_XIMG_LEN; #endif uint8_t comp; |