]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Convert CONFIG_SYS_BOOTPARAMS_LEN to Kconfig
authorTom Rini <trini@konsulko.com>
Thu, 12 May 2022 20:45:08 +0000 (16:45 -0400)
committerTom Rini <trini@konsulko.com>
Mon, 6 Jun 2022 16:09:00 +0000 (12:09 -0400)
This converts the following to Kconfig:
   CONFIG_SYS_BOOTPARAMS_LEN

Signed-off-by: Tom Rini <trini@konsulko.com>
88 files changed:
common/Kconfig
common/board_r.c
configs/M5208EVBE_defconfig
configs/M5235EVB_Flash32_defconfig
configs/M5235EVB_defconfig
configs/M5249EVB_defconfig
configs/M5253DEMO_defconfig
configs/M5272C3_defconfig
configs/M5275EVB_defconfig
configs/M5282EVB_defconfig
configs/M53017EVB_defconfig
configs/M5329AFEE_defconfig
configs/M5329BFEE_defconfig
configs/M5373EVB_defconfig
configs/amcore_defconfig
configs/ap121_defconfig
configs/ap143_defconfig
configs/ap152_defconfig
configs/astro_mcf5373l_defconfig
configs/bcm968380gerg_ram_defconfig
configs/ci20_mmc_defconfig
configs/cobra5272_defconfig
configs/comtrend_ar5315u_ram_defconfig
configs/comtrend_ar5387un_ram_defconfig
configs/comtrend_ct5361_ram_defconfig
configs/comtrend_vr3032u_ram_defconfig
configs/comtrend_wap5813n_ram_defconfig
configs/eb_cpu5282_defconfig
configs/eb_cpu5282_internal_defconfig
configs/gardena-smart-gateway-mt7688_defconfig
configs/hihope_rzg2_defconfig
configs/huawei_hg556a_ram_defconfig
configs/linkit-smart-7688_defconfig
configs/malta64_defconfig
configs/malta64el_defconfig
configs/malta_defconfig
configs/maltael_defconfig
configs/mt7620_mt7530_rfb_defconfig
configs/mt7620_rfb_defconfig
configs/mt7628_rfb_defconfig
configs/netgear_cg3100d_ram_defconfig
configs/netgear_dgnd3700v2_ram_defconfig
configs/pic32mzdask_defconfig
configs/r8a77970_eagle_defconfig
configs/r8a77980_condor_defconfig
configs/r8a77990_ebisu_defconfig
configs/r8a77995_draak_defconfig
configs/r8a779a0_falcon_defconfig
configs/rcar3_salvator-x_defconfig
configs/rcar3_ulcb_defconfig
configs/rzg2_beacon_defconfig
configs/sagem_f@st1704_ram_defconfig
configs/sfr_nb4-ser_ram_defconfig
configs/silinux_ek874_defconfig
configs/stmark2_defconfig
configs/tplink_wdr4300_defconfig
configs/vocore2_defconfig
configs/xtfpga_defconfig
include/configs/M5208EVBE.h
include/configs/M5235EVB.h
include/configs/M5249EVB.h
include/configs/M5253DEMO.h
include/configs/M5272C3.h
include/configs/M5275EVB.h
include/configs/M5282EVB.h
include/configs/M53017EVB.h
include/configs/M5329EVB.h
include/configs/M5373EVB.h
include/configs/amcore.h
include/configs/ap121.h
include/configs/ap143.h
include/configs/ap152.h
include/configs/astro_mcf5373l.h
include/configs/bmips_common.h
include/configs/ci20.h
include/configs/cobra5272.h
include/configs/eb_cpu5282.h
include/configs/gardena-smart-gateway-mt7688.h
include/configs/linkit-smart-7688.h
include/configs/malta.h
include/configs/mt7620.h
include/configs/mt7628.h
include/configs/pic32mzdask.h
include/configs/rcar-gen3-common.h
include/configs/stmark2.h
include/configs/tplink_wdr4300.h
include/configs/vocore2.h
include/configs/xtfpga.h

index a96842a5c11dd7bd2b432e14c7eee99c2a4ab69c..84db2e43f155c51c3692a6160e1564b899562a84 100644 (file)
@@ -659,6 +659,18 @@ config MISC_INIT_R
        help
          Enabling this option calls 'misc_init_r' function
 
+config SYS_MALLOC_BOOTPARAMS
+       bool "Malloc a buffer to use for bootparams"
+       help
+         In some cases rather than using a known location to store the
+         bi_boot_params portion of gd we need to allocate it from our malloc pool.
+
+config SYS_BOOTPARAMS_LEN
+       hex "Size of the bootparam buffer to malloc in bytes"
+       depends on SYS_MALLOC_BOOTPARAMS
+       default 0x20000 if MIPS || RCAR_GEN3
+       default 0x10000
+
 config ID_EEPROM
        bool "Enable I2C connected system identifier EEPROM"
        help
index 6f4aca2077d667927d873de8479aa218ab74e9e9..22b5deaa8c22e8c8c6a23725a9573f2578195117 100644 (file)
@@ -457,7 +457,7 @@ static int initr_env(void)
        return 0;
 }
 
-#ifdef CONFIG_SYS_BOOTPARAMS_LEN
+#ifdef CONFIG_SYS_MALLOC_BOOTPARAMS
 static int initr_malloc_bootparams(void)
 {
        gd->bd->bi_boot_params = (ulong)malloc(CONFIG_SYS_BOOTPARAMS_LEN);
@@ -713,7 +713,7 @@ static init_fnc_t init_sequence_r[] = {
        initr_pvblock,
 #endif
        initr_env,
-#ifdef CONFIG_SYS_BOOTPARAMS_LEN
+#ifdef CONFIG_SYS_MALLOC_BOOTPARAMS
        initr_malloc_bootparams,
 #endif
        INIT_FUNC_WATCHDOG_RESET
index df4da884355b17cb4268f8405110d141f5b0405e..757792f9b0f4918764d3499cf352d0ed5cf46599 100644 (file)
@@ -11,6 +11,7 @@ CONFIG_MCFTMR=y
 CONFIG_SYS_MONITOR_BASE=0x00000400
 CONFIG_BOOTDELAY=1
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="-> "
index 5789d89047f84665e29c51924661af2314d8063e..1ed127ca3c27a0cf55a2e0db05fcf4300debd276 100644 (file)
@@ -12,6 +12,7 @@ CONFIG_MCFTMR=y
 CONFIG_SYS_MONITOR_BASE=0xFFC00400
 CONFIG_BOOTDELAY=1
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PBSIZE=276
index 43a584f8e4601f0f453edfe448174452a9e9189a..fed386c164ad15681b9d1358f1bc1d2356094aa6 100644 (file)
@@ -11,6 +11,7 @@ CONFIG_MCFTMR=y
 CONFIG_SYS_MONITOR_BASE=0xFFE00400
 CONFIG_BOOTDELAY=1
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="-> "
index 65606c42c3cf5f6976177e28cef95fc09ec56302..171df12564ff0f174646c31e8861fdf90b74861e 100644 (file)
@@ -13,6 +13,7 @@ CONFIG_SYS_MONITOR_BASE=0xFFE00400
 CONFIG_SYS_CONSOLE_INFO_QUIET=y
 CONFIG_SYS_DEVICE_NULLDEV=y
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 CONFIG_SYS_PBSIZE=276
 CONFIG_CMD_IMLS=y
index b8a0cb493124129cc0b4eae4accf0c8b898f4349..b3e6277a7e6d6aaa58b2a71869c33cf200660493 100644 (file)
@@ -11,6 +11,7 @@ CONFIG_MCFTMR=y
 CONFIG_SYS_MONITOR_BASE=0xFF800400
 CONFIG_BOOTDELAY=5
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PBSIZE=276
index 59c49223d7e66febcdc659d807c0913a94502a1b..376fb4253060366d4745f28c9b98c8bb245f000a 100644 (file)
@@ -11,6 +11,7 @@ CONFIG_MCFTMR=y
 CONFIG_SYS_MONITOR_BASE=0xFFE00400
 CONFIG_BOOTDELAY=5
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="-> "
index 9774e77b6e927207f9f85b6df49fe99eef2c7220..3420934caf712519dba4f02452146801879d7a6d 100644 (file)
@@ -13,6 +13,7 @@ CONFIG_BOOTDELAY=5
 CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="bootm ffe40000"
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="-> "
index 7d77f6c47f195ca9c848b23b8e2417cd01fc1a17..8f38710b0742820618a10c2365232d6b0771fb13 100644 (file)
@@ -11,6 +11,7 @@ CONFIG_MCFTMR=y
 CONFIG_SYS_MONITOR_BASE=0xFFE00400
 CONFIG_BOOTDELAY=5
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="-> "
index 45656a34f20ad2e1fc75913b043bcc656c477f91..246bc8a3bed70cff3c95e2d5612c526189812de3 100644 (file)
@@ -13,6 +13,7 @@ CONFIG_BOOTDELAY=1
 CONFIG_USE_BOOTARGS=y
 CONFIG_BOOTARGS="root=/dev/mtdblock3 rw rootfstype=jffs2"
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="-> "
index 940196f73a0af9cda9fe8b871d130ad567642289..3536b4432de4ec636f62d1c130f3fbc472bde52b 100644 (file)
@@ -11,6 +11,7 @@ CONFIG_MCFTMR=y
 CONFIG_SYS_MONITOR_BASE=0x00000400
 CONFIG_BOOTDELAY=1
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="-> "
index a885281d1b7e69d213e3df71978a724c32bf962b..a020775c87d08adb112f1a2bd09c0dde4f7882ff 100644 (file)
@@ -11,6 +11,7 @@ CONFIG_MCFTMR=y
 CONFIG_SYS_MONITOR_BASE=0x00000400
 CONFIG_BOOTDELAY=1
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="-> "
index c7c619ff693dd317cbcadacdbaa182a968a5d1cd..b008b91fdd5461748d0d152d6f3dfbf7e482fe4a 100644 (file)
@@ -11,6 +11,7 @@ CONFIG_MCFTMR=y
 CONFIG_SYS_MONITOR_BASE=0x00000400
 CONFIG_BOOTDELAY=1
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="-> "
index 53bfbcf571091c7c18c29e869bafce6bb3cb5dfa..ad549c02c1528794176983094e5f9c1598a2487f 100644 (file)
@@ -15,6 +15,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="bootm ffc20000"
 CONFIG_SYS_CONSOLE_INFO_QUIET=y
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_SYS_LONGHELP is not set
 CONFIG_SYS_PROMPT="amcore $ "
index 0baa4c8d12edf4ca30f05316a7259838e0d0608e..648cf227e3c954a40fdd9d86bc77267e665929ad 100644 (file)
@@ -20,6 +20,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="sf probe;mtdparts default;bootm 0x9f650000"
 CONFIG_DISPLAY_CPUINFO=y
 CONFIG_BOARD_EARLY_INIT_F=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_SYS_PROMPT="ap121 # "
 CONFIG_SYS_CBSIZE=256
 CONFIG_SYS_PBSIZE=281
index b6ab065c6d6bd8c22a82600dbc93c26fbda1041a..272d1c2e396081608dcdc201bf7f80f8691e62da 100644 (file)
@@ -22,6 +22,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="sf probe;mtdparts default;bootm 0x9f680000"
 CONFIG_DISPLAY_CPUINFO=y
 CONFIG_BOARD_EARLY_INIT_F=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_SYS_PROMPT="ap143 # "
 CONFIG_SYS_CBSIZE=256
 CONFIG_SYS_PBSIZE=281
index 0ee5f828ab0be8d693f8c354ac9f4141eafeda4d..67c36cdab81a69e804e7e4406a3a9928d4178041 100644 (file)
@@ -22,6 +22,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="sf probe;mtdparts default;bootm 0x9f060000"
 CONFIG_DISPLAY_CPUINFO=y
 CONFIG_BOARD_EARLY_INIT_F=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_SYS_PROMPT="ap152 # "
 CONFIG_SYS_CBSIZE=256
 CONFIG_SYS_PBSIZE=281
index 4c2121116a2bc18f5824900104dd8580f2589d6b..3a44c7e8ec9d68400431e3356aebe148d85d4da8 100644 (file)
@@ -16,6 +16,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="protect off 0x80000 0x1ffffff;run env_check;run xilinxload&&run alteraload&&bootm 0x80000;update;reset"
 # CONFIG_DISPLAY_BOARDINFO is not set
 CONFIG_MISC_INIT_R=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="URMEL > "
index d35a2ba5461967846d226afdc4dd9c10b56dfa5a..0475535e9910dfa1f73812b57bda27b1ffefd5f5 100644 (file)
@@ -16,6 +16,7 @@ CONFIG_MIPS_BOOT_FDT=y
 # CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_DISPLAY_CPUINFO=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="bcm968380gerg # "
 CONFIG_SYS_MAXARGS=24
index a533706fac188af63061b31c19916b92860a1611..4d963c3eb35e09071e6704f3493f5f23a0fcf522 100644 (file)
@@ -22,6 +22,7 @@ CONFIG_SYS_CONSOLE_IS_IN_ENV=y
 CONFIG_DISPLAY_CPUINFO=y
 CONFIG_BOARD_EARLY_INIT_F=y
 CONFIG_MISC_INIT_R=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_SPL_BANNER_PRINT is not set
 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR=y
 CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x1c
index c6eff7d9352749938702c6da4c0e41d116b522fb..42f6087d83c911022122134b1c27978e7e3ae7d9 100644 (file)
@@ -11,6 +11,7 @@ CONFIG_MCFTMR=y
 CONFIG_SYS_MONITOR_BASE=0xFFE00400
 CONFIG_BOOTDELAY=5
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_CMDLINE_EDITING is not set
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="COBRA > "
index c62531681a009e34b754f1970c6495400bdd0153..170b766089d02015d0fc529c0bdfc56e460dc8b2 100644 (file)
@@ -17,6 +17,7 @@ CONFIG_MIPS_BOOT_FDT=y
 CONFIG_REMAKE_ELF=y
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_DISPLAY_CPUINFO=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="AR-5315un # "
 CONFIG_SYS_MAXARGS=24
index 67fa622769a7ab67527bac13876596fec6bc76b8..599fda481aa8cff2a1f9f9d6bdd7838cd30410ce 100644 (file)
@@ -17,6 +17,7 @@ CONFIG_MIPS_BOOT_FDT=y
 CONFIG_REMAKE_ELF=y
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_DISPLAY_CPUINFO=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="AR-5387un # "
 CONFIG_SYS_MAXARGS=24
index 0e6e8234c1e018d96a7c71b4a23aa79fe7fdcd92..b1ad57b5a56cc54b496585519c3f8995525b0948 100644 (file)
@@ -17,6 +17,7 @@ CONFIG_MIPS_BOOT_FDT=y
 CONFIG_REMAKE_ELF=y
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_DISPLAY_CPUINFO=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="CT-5361 # "
 CONFIG_SYS_MAXARGS=24
index 5f8db634acd807c64ab5573a193ecef7abd97ce6..d07895de9b82bb287007d783b4639908c6647faf 100644 (file)
@@ -17,6 +17,7 @@ CONFIG_MIPS_BOOT_FDT=y
 CONFIG_REMAKE_ELF=y
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_DISPLAY_CPUINFO=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="VR-3032u # "
 CONFIG_SYS_MAXARGS=24
index 36cd978bfaab22dff8e077be74c185edc080e2cf..ca370e66a346380ad9add17951900f7644c04f5d 100644 (file)
@@ -17,6 +17,7 @@ CONFIG_MIPS_BOOT_FDT=y
 CONFIG_REMAKE_ELF=y
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_DISPLAY_CPUINFO=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="WAP-5813n # "
 CONFIG_SYS_MAXARGS=24
index 5a33e2f0ae2d50e6f2786794223af1e3fa316899..d634280de5d3bffe3cbd11720995c2db5bdba101 100644 (file)
@@ -17,6 +17,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="printenv"
 # CONFIG_DISPLAY_BOARDINFO is not set
 CONFIG_MISC_INIT_R=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_PROMPT="\nEB+CPU5282> "
 CONFIG_SYS_CBSIZE=1024
index d23b7170cdd1de38b22b6bb61e8d088381001f5f..a726fdb56e3766a75c24479489829d4c80fd0b9a 100644 (file)
@@ -17,6 +17,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="printenv"
 # CONFIG_DISPLAY_BOARDINFO is not set
 CONFIG_MISC_INIT_R=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 # CONFIG_AUTO_COMPLETE is not set
 CONFIG_SYS_CBSIZE=1024
 CONFIG_CMD_IMLS=y
index 7b0b2a5c5888682b5411424eb2df54eea71ee7de..b07e7c78d06fb308c8ad8fac28748f17c1430709 100644 (file)
@@ -36,6 +36,7 @@ CONFIG_BOOTCOMMAND="cp.b 83000000 84000000 10000 && dhcp uEnv.txt && env import
 CONFIG_USE_PREBOOT=y
 CONFIG_SYS_CONSOLE_INFO_QUIET=y
 CONFIG_BOARD_EARLY_INIT_F=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_SPL_SYS_MALLOC_SIMPLE=y
 CONFIG_SPL_NOR_SUPPORT=y
 CONFIG_HUSH_PARSER=y
index 4470cc7fb339012c3dd1abd70d487bd1a716598f..8bf14e09d47fd3d85b116d1710deefd7438992c3 100644 (file)
@@ -20,6 +20,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="tftp 0x48080000 Image; tftp 0x48000000 Image-r8a774a1-hihope-rzg2m.dtb; booti 0x48080000 - 0x48000000"
 CONFIG_DEFAULT_FDT_FILE="r8a774a1-hihope-rzg2m.dtb"
 # CONFIG_BOARD_EARLY_INIT_F is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_MAXARGS=64
 CONFIG_SYS_PBSIZE=2068
index fbdbf4b8d76ebea6bafa6e5b20f4e7ab605ba8d0..1c43ae262d8143a4ca51b775793ea638e3688c03 100644 (file)
@@ -17,6 +17,7 @@ CONFIG_MIPS_BOOT_FDT=y
 CONFIG_REMAKE_ELF=y
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_DISPLAY_CPUINFO=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="HG556a # "
 CONFIG_SYS_MAXARGS=24
index b137edd7e6a04c53dbda9cc1fa8e2a7dfece90bc..d50c77d8b63d56a8c6f378bad41a463e7395db83 100644 (file)
@@ -28,6 +28,7 @@ CONFIG_LEGACY_IMAGE_FORMAT=y
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_SYS_CONSOLE_INFO_QUIET=y
 CONFIG_BOARD_EARLY_INIT_F=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_SPL_SYS_MALLOC_SIMPLE=y
 CONFIG_SPL_NOR_SUPPORT=y
 CONFIG_HUSH_PARSER=y
index 944d0fd8a8dbc506a2a0e70a8abc9edfbe78d0f7..cbea4fadff7e30b18c742a0a869725b5847d4750 100644 (file)
@@ -12,6 +12,7 @@ CONFIG_CPU_MIPS64_R2=y
 # CONFIG_AUTOBOOT is not set
 CONFIG_BOARD_EARLY_INIT_F=y
 CONFIG_MISC_INIT_R=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="malta # "
 CONFIG_SYS_CBSIZE=256
index 907fd19328bd35fc8cb670ac02299cd6971cff71..b268e33a379f0bf17e5177fe5409b66f5115ffbc 100644 (file)
@@ -14,6 +14,7 @@ CONFIG_CPU_MIPS64_R2=y
 # CONFIG_AUTOBOOT is not set
 CONFIG_BOARD_EARLY_INIT_F=y
 CONFIG_MISC_INIT_R=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="maltael # "
 CONFIG_SYS_CBSIZE=256
index f2b507e200ccf833795ad61983e22963486d38a9..7b1b50547a4d8358af68d74beff960610b047680 100644 (file)
@@ -11,6 +11,7 @@ CONFIG_TARGET_MALTA=y
 # CONFIG_AUTOBOOT is not set
 CONFIG_BOARD_EARLY_INIT_F=y
 CONFIG_MISC_INIT_R=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="malta # "
 CONFIG_SYS_CBSIZE=256
index 866f34f8326bd009ab0ce911936e1e69c28aa160..540864b57327b5b67e37f88045c00835145e4732 100644 (file)
@@ -13,6 +13,7 @@ CONFIG_SYS_LITTLE_ENDIAN=y
 # CONFIG_AUTOBOOT is not set
 CONFIG_BOARD_EARLY_INIT_F=y
 CONFIG_MISC_INIT_R=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="maltael # "
 CONFIG_SYS_CBSIZE=256
index af1282c99044f4557048cb4a1cd48f64027ebf8b..5bf12729050a4c971ab8bfe9b4784961049c76fd 100644 (file)
@@ -23,6 +23,7 @@ CONFIG_MIPS_BOOT_FDT=y
 CONFIG_DEBUG_UART=y
 CONFIG_FIT=y
 # CONFIG_ARCH_FIXUP_FDT_MEMORY is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_SPL_SYS_MALLOC_SIMPLE=y
 CONFIG_SPL_NOR_SUPPORT=y
 # CONFIG_CMD_ELF is not set
index ac7a56ef1eada0e2e401efd4e1019052fd2b5a80..8a4124e95cabea0479232b0cd6210b0013c6282a 100644 (file)
@@ -22,6 +22,7 @@ CONFIG_MIPS_BOOT_FDT=y
 CONFIG_DEBUG_UART=y
 CONFIG_FIT=y
 # CONFIG_ARCH_FIXUP_FDT_MEMORY is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_SPL_SYS_MALLOC_SIMPLE=y
 CONFIG_SPL_NOR_SUPPORT=y
 # CONFIG_CMD_ELF is not set
index 5862295871b153e9b929c9968db5704235e219ce..3ca36cdede31074f949776036f55deb86fe88549 100644 (file)
@@ -22,6 +22,7 @@ CONFIG_MIPS_BOOT_FDT=y
 CONFIG_FIT=y
 # CONFIG_ARCH_FIXUP_FDT_MEMORY is not set
 CONFIG_SYS_CONSOLE_INFO_QUIET=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_SPL_SYS_MALLOC_SIMPLE=y
 CONFIG_SPL_NOR_SUPPORT=y
 # CONFIG_CMD_ELF is not set
index 05ab61beb16de4f488a5f81d58358fd5081df4fb..4336116f5770786999b64bc1f4ba4bf6a33e189f 100644 (file)
@@ -15,6 +15,7 @@ CONFIG_MIPS_BOOT_FDT=y
 # CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_DISPLAY_CPUINFO=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="CG3100D # "
 CONFIG_SYS_MAXARGS=24
index e1f9ceed0801278c66f8695531e2df427c6509cb..bbfa9e13fa3cf52f1c800b784eb8f0116b96d990 100644 (file)
@@ -18,6 +18,7 @@ CONFIG_REMAKE_ELF=y
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_DISPLAY_CPUINFO=y
 CONFIG_BOARD_EARLY_INIT_F=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="DGND3700v2 # "
 CONFIG_SYS_MAXARGS=24
index 21f407c1f35e4f686eaf2da80cf685f508a09fcf..12cff6ab0b96c5c716e462bf18813d4d83962b2d 100644 (file)
@@ -15,6 +15,8 @@ CONFIG_DISTRO_DEFAULTS=y
 CONFIG_TIMESTAMP=y
 CONFIG_BOOTDELAY=5
 CONFIG_BOOTCOMMAND="run distro_bootcmd || run legacy_bootcmd"
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
+CONFIG_SYS_BOOTPARAMS_LEN=0x1000
 CONFIG_SYS_PROMPT="dask # "
 CONFIG_SYS_PBSIZE=1048
 # CONFIG_CMD_SAVEENV is not set
index 4f4bd7a40b3f16b689a14d2a9e52fd99012b43ad..b37577b46efec52bef10e4005cb7d0df397b8b63 100644 (file)
@@ -21,6 +21,7 @@ CONFIG_USE_BOOTARGS=y
 CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="tftp 0x48080000 Image; tftp 0x48000000 Image-r8a77970-eagle.dtb; booti 0x48080000 - 0x48000000"
 CONFIG_DEFAULT_FDT_FILE="r8a77970-eagle.dtb"
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_MAXARGS=64
 CONFIG_SYS_PBSIZE=2068
index 17df03cbe994afa8f51911d172b09134640ae6dc..a5da38ed7b609aa962b8e79bb90799d0c02dc797 100644 (file)
@@ -22,6 +22,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="tftp 0x48080000 Image; tftp 0x48000000 Image-r8a77980-condor.dtb; booti 0x48080000 - 0x48000000"
 CONFIG_DEFAULT_FDT_FILE="r8a77980-condor.dtb"
 # CONFIG_BOARD_EARLY_INIT_F is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_MAXARGS=64
 CONFIG_SYS_PBSIZE=2068
index b3bc8a754d171c42e16e9ae3b476f3dd2367ccd1..7ba55737d841e59e40d5bd9c720fb689337efd97 100644 (file)
@@ -22,6 +22,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="tftp 0x48080000 Image; tftp 0x48000000 Image-r8a77990-ebisu.dtb; booti 0x48080000 - 0x48000000"
 CONFIG_DEFAULT_FDT_FILE="r8a77990-ebisu.dtb"
 # CONFIG_BOARD_EARLY_INIT_F is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_UPDATE_TFTP=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_MAXARGS=64
index 1d73756f9527ae97b3f36db0854b7b9ec271f22e..e2a7e5f636dd40838c1b603f570f05d7a7414c13 100644 (file)
@@ -21,6 +21,7 @@ CONFIG_USE_BOOTARGS=y
 CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="tftp 0x48080000 Image; tftp 0x48000000 Image-r8a77995-draak.dtb; booti 0x48080000 - 0x48000000"
 CONFIG_DEFAULT_FDT_FILE="r8a77995-draak.dtb"
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_UPDATE_TFTP=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_MAXARGS=64
index 41353538f2bad60550921f5f785bdaeda9a5bc89..e15884222a07eb949f1ed74bd21922eefa0c683a 100644 (file)
@@ -24,6 +24,7 @@ CONFIG_BOOTARGS="root=/dev/nfs rw nfsroot=192.168.0.1:/export/rfs ip=192.168.0.2
 CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="tftp 0x48080000 Image; tftp 0x48000000 Image-r8a779a0-falcon.dtb; booti 0x48080000 - 0x48000000"
 CONFIG_DEFAULT_FDT_FILE="r8a779a0-falcon.dtb"
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_MAXARGS=64
 CONFIG_SYS_PBSIZE=2068
index d2233d7eef1215733ccceb1f7b06b172baf39206..7bcbb3a13394cc150f06d87a08ed7596355a6210 100644 (file)
@@ -21,6 +21,7 @@ CONFIG_USE_BOOTARGS=y
 CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="tftp 0x48080000 Image; tftp 0x48000000 Image-r8a77950-salvator-x.dtb; booti 0x48080000 - 0x48000000"
 CONFIG_DEFAULT_FDT_FILE="r8a77950-salvator-x.dtb"
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_UPDATE_TFTP=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_MAXARGS=64
index 8402634cc01138f8e169e9dbf9bde77e3a35a968..c953299c0d0ff58b14c4e7674a94215545c7e05a 100644 (file)
@@ -21,6 +21,7 @@ CONFIG_USE_BOOTARGS=y
 CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="tftp 0x48080000 Image; tftp 0x48000000 Image-r8a77950-ulcb.dtb; booti 0x48080000 - 0x48000000"
 CONFIG_DEFAULT_FDT_FILE="r8a77950-ulcb.dtb"
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_UPDATE_TFTP=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_MAXARGS=64
index 930e3e60776e7585bd58e1ce023d164d6a50f895..1451a40dd9331aae13a7b3879d7097b618ed73a2 100644 (file)
@@ -19,6 +19,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="mmc dev ${mmcdev}; if mmc rescan; then if run loadbootscript; then run bootscript; else if run loadimage; then run mmcboot; else run netboot; fi; fi; else booti ${loadaddr} - ${fdt_addr}; fi"
 CONFIG_DEFAULT_FDT_FILE="r8a774a1-beacon-rzg2m-kit.dtb"
 # CONFIG_BOARD_EARLY_INIT_F is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_MAXARGS=64
 CONFIG_SYS_PBSIZE=2068
index 4aff0f34a604a23742dd92ecfef53ba6f604cd82..875ae210de408c42633340f64e5673b4427dc4e7 100644 (file)
@@ -16,6 +16,7 @@ CONFIG_MIPS_BOOT_FDT=y
 # CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_DISPLAY_CPUINFO=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="F@ST1704 # "
 CONFIG_SYS_MAXARGS=24
index 13da31e3004c7ed6191cc7612ee0f7ce36cf7fc4..6f261882faae56f4f3de6c99935ec2d9c959e112 100644 (file)
@@ -18,6 +18,7 @@ CONFIG_MIPS_BOOT_FDT=y
 CONFIG_REMAKE_ELF=y
 CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_DISPLAY_CPUINFO=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="NB4-SER # "
 CONFIG_SYS_MAXARGS=24
index 08553661d913f1dc6db7738aff443cfdbf2ae889..74523483926c80a1e06e317573f41f816e75bd97 100644 (file)
@@ -23,6 +23,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="tftp 0x48080000 Image; tftp 0x48000000 Image-r8a774c0-ek874.dtb; booti 0x48080000 - 0x48000000"
 CONFIG_DEFAULT_FDT_FILE="r8a774c0-ek874.dtb"
 # CONFIG_BOARD_EARLY_INIT_F is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_MAXARGS=64
 CONFIG_SYS_PBSIZE=2068
index e56ca93d4b8ee888c8076a84dba11d0278cb4ef5..dfec23e75187e4ec56f60dbd384db99ef028812d 100644 (file)
@@ -16,6 +16,7 @@ CONFIG_BOOTARGS="console=ttyS0,115200 root=/dev/ram0 rw rootfstype=ramfs rdinit=
 CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="sf probe 0:1 50000000; sf read ${loadaddr} 0x100000 ${kern_size}; bootm ${loadaddr}"
 # CONFIG_DISPLAY_BOARDINFO is not set
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 # CONFIG_CMDLINE_EDITING is not set
 CONFIG_SYS_PROMPT="stmark2 $ "
index 62d9ec297bb2b52e0ebb028c0bd70f1c3ab79594..6a0686b32cc9dc28d4b172f25a09a72cc10285e9 100644 (file)
@@ -15,6 +15,7 @@ CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="dhcp 192.168.1.1:wdr4300.fit && bootm $loadaddr"
 CONFIG_DISPLAY_CPUINFO=y
 CONFIG_BOARD_EARLY_INIT_F=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_MAXARGS=32
 # CONFIG_CMD_ELF is not set
index ff7a0ddd18e6bb834f3dcf2df6614aadb47f570f..33d27ad4b62d7f20f66cd0ee633ce2771848b36a 100644 (file)
@@ -30,6 +30,7 @@ CONFIG_OF_STDOUT_VIA_ALIAS=y
 CONFIG_LOGLEVEL=8
 # CONFIG_DISPLAY_BOARDINFO is not set
 CONFIG_DISPLAY_BOARDINFO_LATE=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_SPL_SYS_MALLOC_SIMPLE=y
 CONFIG_SPL_NOR_SUPPORT=y
 CONFIG_HUSH_PARSER=y
index ec7c5637e4a9f32dd8dcf3c0799f38dcce42e4d3..e98af5ec7e633ffb6b60733d642b4b8edba476fd 100644 (file)
@@ -15,6 +15,7 @@ CONFIG_AUTOBOOT_KEYED=y
 CONFIG_AUTOBOOT_PROMPT="Autobooting in %d seconds, press <SPACE> to stop\n"
 CONFIG_AUTOBOOT_STOP_STR=" "
 CONFIG_MISC_INIT_R=y
+CONFIG_SYS_MALLOC_BOOTPARAMS=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="U-Boot> "
 CONFIG_SYS_PBSIZE=1049
index 275fb5665fd8b37d77bd9c4e007d7911557ce985..135dec0ebb4dc11f6e2cb40e83685685d3290574 100644 (file)
@@ -83,8 +83,6 @@
 
 #define CONFIG_SYS_MONITOR_LEN         (256 << 10)     /* Reserve 256 kB for Monitor */
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      64*1024
-
 /*
  * For booting Linux, the board info and command line data
  * have to be in the first 8 MB of memory, since this is
index 13743dab52dbd38ac8cae317f17dab70c571c6bf..88f5f155633c7a20ca5e70f9bf7eb4a8125961ab 100644 (file)
@@ -88,8 +88,6 @@
 
 #define CONFIG_SYS_MONITOR_LEN         (256 << 10)     /* Reserve 256 kB for Monitor */
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      64*1024
-
 /*
  * For booting Linux, the board info and command line data
  * have to be in the first 8 MB of memory, since this is
index f68eb979bddc4231f37e77a637257bbea49f41dd..1a604f5c81ea364d0a3d748b2b63de78c77f03c6 100644 (file)
@@ -65,7 +65,6 @@
 #endif
 
 #define CONFIG_SYS_MONITOR_LEN         0x20000
-#define CONFIG_SYS_BOOTPARAMS_LEN      64*1024
 
 /*
  * For booting Linux, the board info and command line data
index 079675be5bcbc0e421c4647838f47a0b05ef2907..0a416dc122662f213f7a52e7410a7623d66ffee1 100644 (file)
@@ -91,7 +91,6 @@
 #define CONFIG_SYS_SDRAM_SIZE          16      /* SDRAM size in MB */
 
 #define CONFIG_SYS_MONITOR_LEN         0x40000
-#define CONFIG_SYS_BOOTPARAMS_LEN      (64*1024)
 
 /*
  * For booting Linux, the board info and command line data
index b8918680c14a1e8e5f42031b79466ab9bdcd0c58..6b4028c17ca28ac873027bd5ac07d4a830bf9ac7 100644 (file)
@@ -89,7 +89,6 @@
 #define CONFIG_SYS_FLASH_BASE          0xffe00000
 
 #define CONFIG_SYS_MONITOR_LEN         0x20000
-#define CONFIG_SYS_BOOTPARAMS_LEN      64*1024
 
 /*
  * For booting Linux, the board info and command line data
index 68e3c89a1cd87374dca14aa0781a3d5e85b17fa3..99412aabdec9c947cf19d55efd71e0796f25e1f3 100644 (file)
@@ -91,7 +91,6 @@
 #define CONFIG_SYS_FLASH_BASE          CONFIG_SYS_CS0_BASE
 
 #define CONFIG_SYS_MONITOR_LEN         0x20000
-#define CONFIG_SYS_BOOTPARAMS_LEN      64*1024
 
 /*
  * For booting Linux, the board info and command line data
index b6e569d82025df229dedfb77be801fa9b6048439..fe04a70b61e9cc8c556b2be77b57539467aab9fd 100644 (file)
@@ -92,7 +92,6 @@
 #define CONFIG_SYS_INT_FLASH_ENABLE    0x21
 
 #define CONFIG_SYS_MONITOR_LEN         0x20000
-#define CONFIG_SYS_BOOTPARAMS_LEN      64*1024
 
 /*
  * For booting Linux, the board info and command line data
index 34b5ceb20c4dba58879feb1a0616a8b03426549d..9b84d3693a3166367b5dc0d34a59688380038068 100644 (file)
@@ -97,8 +97,6 @@
 
 #define CONFIG_SYS_MONITOR_LEN         (256 << 10)     /* Reserve 256 kB for Monitor */
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      64*1024
-
 /*
  * For booting Linux, the board info and command line data
  * have to be in the first 8 MB of memory, since this is
index 673b0dc2e8db2421b94c2a874ee92982f2647a4c..7e65f9914f4dad35e7b63cd065baf20bf38d5e71 100644 (file)
@@ -93,8 +93,6 @@
 
 #define CONFIG_SYS_MONITOR_LEN         (256 << 10)     /* Reserve 256 kB for Monitor */
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      64*1024
-
 /*
  * For booting Linux, the board info and command line data
  * have to be in the first 8 MB of memory, since this is
index 4c9fc43fd6ca69edea1e554a52b29f457863fb5c..b131aefd6dd156ac6b1e1eae109c39a386094a38 100644 (file)
@@ -95,8 +95,6 @@
 
 #define CONFIG_SYS_MONITOR_LEN         (256 << 10)     /* Reserve 256 kB for Monitor */
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      64*1024
-
 /*
  * For booting Linux, the board info and command line data
  * have to be in the first 8 MB of memory, since this is
index 898978eb96ab75cfd88dd1adbc95e2eb92791018..e80c9f6d680e2abe5d93e516a9bcea5bfa3eec08 100644 (file)
@@ -46,7 +46,6 @@
 #define CONFIG_SYS_WRITE_SWAPPED_DATA
 /* reserve 128-4KB */
 #define CONFIG_SYS_MONITOR_LEN          ((128 - 4) * 1024)
-#define CONFIG_SYS_BOOTPARAMS_LEN      (64 * 1024)
 
 #define LDS_BOARD_TEXT \
        . = DEFINED(env_offset) ? env_offset : .; \
index e1c2e066131c722a96684cf71617c629560e6cbf..711406a5505330fb866c69096f8751a2d501d584 100644 (file)
@@ -9,8 +9,6 @@
 #define CONFIG_SYS_MHZ                  200
 #define CONFIG_SYS_MIPS_TIMER_FREQ      (CONFIG_SYS_MHZ * 1000000)
 
-#define CONFIG_SYS_BOOTPARAMS_LEN       0x20000
-
 #define CONFIG_SYS_SDRAM_BASE           0x80000000
 
 #define CONFIG_SYS_INIT_RAM_ADDR        0xbd000000
index 37fc196514f6822a1348dfb6829a007754564021..f89c41a74424660be3f215f1eb65cb42231a3c41 100644 (file)
@@ -9,8 +9,6 @@
 #define CONFIG_SYS_MHZ                  325
 #define CONFIG_SYS_MIPS_TIMER_FREQ      (CONFIG_SYS_MHZ * 1000000)
 
-#define CONFIG_SYS_BOOTPARAMS_LEN       0x20000
-
 #define CONFIG_SYS_SDRAM_BASE           0x80000000
 
 #define CONFIG_SYS_INIT_RAM_ADDR        0xbd000000
index 9f47633371087c728be30ac94ad6c94066658fb4..9a0d7d2c6d6cba58fc14b93e4e8b61a25f4dcffa 100644 (file)
@@ -9,8 +9,6 @@
 #define CONFIG_SYS_MHZ                  375
 #define CONFIG_SYS_MIPS_TIMER_FREQ      (CONFIG_SYS_MHZ * 1000000)
 
-#define CONFIG_SYS_BOOTPARAMS_LEN       0x20000
-
 #define CONFIG_SYS_SDRAM_BASE           0x80000000
 
 #define CONFIG_SYS_INIT_RAM_ADDR        0xbd000000
index 9d1203f397805d0ff5ff9dedbc8f29638af3f63b..8362fb5ce3c4044daa1c3c08da77b4c0c7fcd573 100644 (file)
 /* Reserve 256 kB for Monitor */
 #define CONFIG_SYS_MONITOR_LEN         (256 << 10)
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      (64 * 1024)
-
 /*
  * For booting Linux, the board info and command line data
  * have to be in the first 8 MB of memory, since this is
index f85b9039fdd5e37235589943a72054397ed5cb47..7e358a6314bfef83ba32180ecd58c8eb436ccadb 100644 (file)
@@ -12,7 +12,4 @@
 #define CONFIG_SYS_BAUDRATE_TABLE      { 9600, 19200, 38400, 57600, 115200, \
                                          230400, 500000, 1500000 }
 
-/* Memory usage */
-#define CONFIG_SYS_BOOTPARAMS_LEN      SZ_128K
-
 #endif /* __CONFIG_BMIPS_COMMON_H */
index 4af11496cb15a07a7cb2713edf9488b910718b79..d2cb2f4b6f2d94a97eff5f50d39d0eab8047a52b 100644 (file)
@@ -15,7 +15,6 @@
 
 /* Memory configuration */
 #define CONFIG_SYS_MONITOR_LEN         (512 * 1024)
-#define CONFIG_SYS_BOOTPARAMS_LEN      (128 * 1024)
 
 #define CONFIG_SYS_SDRAM_BASE          0x80000000 /* cached (KSEG0) address */
 #define CONFIG_SYS_INIT_SP_OFFSET      0x400000
index 1822ce5120ac76eef7cde841e5e79477b7f1d4ce..f1a4df726f42d166370d0156950b83227259424c 100644 (file)
@@ -190,7 +190,6 @@ enter a valid image address in flash */
 #define CONFIG_SYS_FLASH_BASE          0xffe00000
 
 #define CONFIG_SYS_MONITOR_LEN         0x20000
-#define CONFIG_SYS_BOOTPARAMS_LEN      64*1024
 
 /*
  * For booting Linux, the board info and command line data
index 9374928a9e4b1ca1cf0dd984c6aaadf5af01781e..70ee288aa72e75d8024e0aefdca26c1462c65851 100644 (file)
@@ -81,7 +81,6 @@
 #define        CONFIG_SYS_SDRAM_SIZE           CONFIG_SYS_SDRAM_SIZE0
 
 #define CONFIG_SYS_MONITOR_LEN         0x20000
-#define CONFIG_SYS_BOOTPARAMS_LEN      64*1024
 
 /*
  * For booting Linux, the board info and command line data
index 3c4a13cd0d57c467932e6533d4df687278888de3..3fe37eae8bfaac23428b7deb6bb8dac37001b9dd 100644 (file)
@@ -39,9 +39,6 @@
 
 /* RAM */
 
-/* Memory usage */
-#define CONFIG_SYS_BOOTPARAMS_LEN      (128 * 1024)
-
 /* Environment settings */
 
 #endif /* __CONFIG_GARDENA_SMART_GATEWAY_H */
index 35a6db4c1869594af269d5f81cb7f30397ca7c42..b0d77d1c62458f07acc0518deb09004675788b83 100644 (file)
@@ -40,9 +40,6 @@
 
 /* RAM */
 
-/* Memory usage */
-#define CONFIG_SYS_BOOTPARAMS_LEN      (128 * 1024)
-
 /* Environment settings */
 
 #endif /* __CONFIG_LINKIT_SMART_7688_H */
index 84e5f985b1aa0d6f98ae4deba83657b7b2f0b713..225ed7cd5cdcbfa7ec82842573499ded81e21631 100644 (file)
@@ -37,7 +37,6 @@
 
 #define CONFIG_SYS_INIT_SP_OFFSET      0x400000
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      (128 * 1024)
 #define CONFIG_SYS_BOOTM_LEN           (64 * 1024 * 1024)
 
 /*
index 1c70deff70be0ca41a4dabf22766354ef0cfbc59..bcbc70b0945c4b8a68e4233aeb4c128ad19ac414 100644 (file)
@@ -10,8 +10,6 @@
 
 #define CONFIG_SYS_MIPS_TIMER_FREQ     290000000
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      0x20000
-
 #define CONFIG_SYS_SDRAM_BASE          0x80000000
 
 #define CONFIG_SYS_INIT_SP_OFFSET      0x400000
index 4f934ea40d0b4ad0740e08d2a8265227d502a16f..efda683b4a795d794aa032d44d28787437bf6b53 100644 (file)
@@ -10,8 +10,6 @@
 
 #define CONFIG_SYS_MIPS_TIMER_FREQ     290000000
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      0x20000
-
 #define CONFIG_SYS_SDRAM_BASE          0x80000000
 
 #define CONFIG_SYS_INIT_SP_OFFSET      0x80000
index c18834c437d4c25f69f4b79d093c170701652090..10795df376151bbf08c5dd3347fe50991263bb35 100644 (file)
@@ -28,7 +28,6 @@
 
 /* SDRAM Configuration (for final code, data, stack, heap) */
 #define CONFIG_SYS_SDRAM_BASE          0x88000000
-#define CONFIG_SYS_BOOTPARAMS_LEN      (4 << 10)
 
 #define CONFIG_SYS_MONITOR_LEN         (192 << 10)
 
index e65ab72ca9c6a22a4aa62208949b5dbd9c532563..a0ba0c2ea78e24fdd69819f7bd6914e0072a4aa9 100644 (file)
@@ -15,8 +15,6 @@
 #define CONFIG_SPL_TARGET      "spl/u-boot-spl.scif"
 #endif
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      SZ_128K
-
 /* boot option */
 
 /* Generic Interrupt Controller Definitions */
index a56bc4e15401342647f2e7399f70a141b0a58f80..b0a89734feb7ea36546aef68b51f2cfb066871f3 100644 (file)
@@ -73,7 +73,6 @@
 #define CONFIG_SERIAL_BOOT
 #endif
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      (64 * 1024)
 /* Reserve 256 kB for Monitor */
 #define CONFIG_SYS_MONITOR_LEN         (256 << 10)
 
index bdb77cfc2c7065889b2d46fac7840e61f935c0a5..daeaab807185974f79d5ffe21d13caa976922d69 100644 (file)
@@ -9,8 +9,6 @@
 #define CONFIG_SYS_MHZ                 280
 #define CONFIG_SYS_MIPS_TIMER_FREQ     (CONFIG_SYS_MHZ * 1000000)
 
-#define CONFIG_SYS_BOOTPARAMS_LEN      0x20000
-
 #define CONFIG_SYS_SDRAM_BASE          0xa0000000
 
 #define CONFIG_SYS_INIT_RAM_ADDR       0xbd000000
index b924b24c62c2ab8624f6def6d2c32660939625d7..af792c78ee2c2110af0ce198fdaf726a948dfc41 100644 (file)
@@ -33,9 +33,6 @@
 
 /* RAM */
 
-/* Memory usage */
-#define CONFIG_SYS_BOOTPARAMS_LEN      (128 * 1024)
-
 /* Environment settings */
 
 #endif //__VOCORE2_CONFIG_H__
index 4218015c3776e810f1f2303025ba68374f6247bc..215b7592d2aee674d5039174ec99702fb01a989b 100644 (file)
@@ -62,9 +62,6 @@
 # define CONFIG_SYS_MONITOR_LEN                0x00040000      /* 256KB */
 #endif
 
-/* Linux boot param area in RAM (used only when booting linux) */
-#define CONFIG_SYS_BOOTPARAMS_LEN      (64  << 10)
-
 /* Memory test is destructive so default must not overlap vectors or U-Boot*/
 
 /* Load address for stand-alone applications.