-
-
Save trini/d42bd392463c39766a5f872c190ccf27 to your computer and use it in GitHub Desktop.
Sughosh's LMB rework RFC v1 world build results
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Starting LLVM-17 test | |
generated_defconfig:336:warning: unexpected data: # CONFIG_WATCHDOG_AUTOSTART is not set | |
Done with LLVM-17 test | |
All commits appear OK | |
------------------------------------------------------------------------- | |
Commit 633b3a81e85d ("lmb: remove the unused lmb_is_reserved() function") | |
------------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 28 lines checked | |
Commit 633b3a81e85d ("lmb: remove the unused lmb_is_reserved() function") has no obvious style problems and is ready for submission. | |
--------------------------------------------------------- | |
Commit 34f9a93b2002 ("lmb: staticize __lmb_alloc_base()") | |
--------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 64 lines checked | |
Commit 34f9a93b2002 ("lmb: staticize __lmb_alloc_base()") has no obvious style problems and is ready for submission. | |
----------------------------------------------------------------- | |
Commit 65fb000d4974 ("lmb: make the lmb reservations persistent") | |
----------------------------------------------------------------- | |
WARNING: Use 'if (IS_ENABLED(CONFIG...))' instead of '#if or #ifdef' where possible | |
#123: FILE: lib/lmb.c:23: | |
+#if !IS_ENABLED(CONFIG_LMB_USE_MAX_REGIONS) | |
WARNING: Use 'if (IS_ENABLED(CONFIG...))' instead of '#if or #ifdef' where possible | |
#129: FILE: lib/lmb.c:29: | |
+#if IS_ENABLED(CONFIG_LMB_USE_MAX_REGIONS) | |
CHECK: Unnecessary parentheses around 'addr >= lmb.reserved.region[i].base' | |
#314: FILE: lib/lmb.c:564: | |
+ if ((addr >= lmb.reserved.region[i].base) && (addr <= upper)) | |
CHECK: Unnecessary parentheses around 'addr <= upper' | |
#314: FILE: lib/lmb.c:564: | |
+ if ((addr >= lmb.reserved.region[i].base) && (addr <= upper)) | |
total: 0 errors, 2 warnings, 2 checks, 326 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit 65fb000d4974 ("lmb: make the lmb reservations persistent") has style problems, please review. | |
--------------------------------------------------------------------------------- | |
Commit 02a67c1f21b3 ("lmb: remove local instances of the lmb structure variable") | |
--------------------------------------------------------------------------------- | |
WARNING: space prohibited between function name and open parenthesis '(' | |
#239: FILE: arch/m68k/lib/bootm.c:55: | |
+ ret = boot_get_kbd (&kbd); | |
WARNING: space prohibited between function name and open parenthesis '(' | |
#378: FILE: arch/powerpc/lib/bootm.c:177: | |
+ ret = boot_get_cmdline (cmd_start, cmd_end); | |
WARNING: space prohibited between function name and open parenthesis '(' | |
#394: FILE: arch/powerpc/lib/bootm.c:196: | |
+ ret = boot_get_kbd (kbd); | |
CHECK: Prefer kernel type 'u64' over 'uint64_t' | |
#708: FILE: boot/image-fdt.c:71: | |
+static void boot_fdt_reserve_region(uint64_t addr, uint64_t size, | |
total: 0 errors, 3 warnings, 1 checks, 1743 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit 02a67c1f21b3 ("lmb: remove local instances of the lmb structure variable") has style problems, please review. | |
------------------------------------------------------------------------------------- | |
Commit cbaef253cd45 ("lmb: pass a flag to image_setup_libfdt() for lmb reservations") | |
------------------------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 78 lines checked | |
Commit cbaef253cd45 ("lmb: pass a flag to image_setup_libfdt() for lmb reservations") has no obvious style problems and is ready for submission. | |
---------------------------------------------------------------------------------- | |
Commit befaab10d1af ("lmb: reserve and add common memory regions post relocation") | |
---------------------------------------------------------------------------------- | |
WARNING: Use 'if (IS_ENABLED(CONFIG...))' instead of '#if or #ifdef' where possible | |
#36: FILE: common/board_r.c:559: | |
+#if defined(CONFIG_LMB) | |
WARNING: Use 'if (IS_ENABLED(CONFIG...))' instead of '#if or #ifdef' where possible | |
#55: FILE: common/board_r.c:629: | |
+#if defined(CONFIG_LMB) | |
total: 0 errors, 2 warnings, 0 checks, 73 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit befaab10d1af ("lmb: reserve and add common memory regions post relocation") has style problems, please review. | |
------------------------------------------------------------------------- | |
Commit 6efa5d816a31 ("lmb: remove lmb_init_and_reserve_range() function") | |
------------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 30 lines checked | |
Commit 6efa5d816a31 ("lmb: remove lmb_init_and_reserve_range() function") has no obvious style problems and is ready for submission. | |
------------------------------------------------------------------------- | |
Commit d14e522ac1a0 ("lmb: replcace the lmb_init_and_reserve() function") | |
------------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 131 lines checked | |
Commit d14e522ac1a0 ("lmb: replcace the lmb_init_and_reserve() function") has no obvious style problems and is ready for submission. | |
----------------------------------------------------------- | |
Commit d233b919ec45 ("lmb: allow for resizing lmb regions") | |
----------------------------------------------------------- | |
CHECK: Alignment should match open parenthesis | |
#106: FILE: lib/lmb.c:324: | |
+ if (i == rgn->cnt - 1 || | |
+ base + size < rgn->region[i + 1].base) { | |
WARNING: else is not generally useful after a break or return | |
#163: FILE: lib/lmb.c:392: | |
+ break; | |
+ } else { | |
total: 0 errors, 1 warnings, 1 checks, 186 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit d233b919ec45 ("lmb: allow for resizing lmb regions") has style problems, please review. | |
---------------------------------------------------------------------- | |
Commit fc91d1762768 ("event: add events to notify memory map changes") | |
---------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 50 lines checked | |
Commit fc91d1762768 ("event: add events to notify memory map changes") has no obvious style problems and is ready for submission. | |
---------------------------------------------------------------------------------------- | |
Commit 62c34d47d334 ("lib: Kconfig: add a config symbol for getting memory map updates") | |
---------------------------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 15 lines checked | |
Commit 62c34d47d334 ("lib: Kconfig: add a config symbol for getting memory map updates") has no obvious style problems and is ready for submission. | |
------------------------------------------------------------------------------ | |
Commit c8f3a36de560 ("add a function to check if an address is in RAM memory") | |
------------------------------------------------------------------------------ | |
total: 0 errors, 0 warnings, 0 checks, 19 lines checked | |
Commit c8f3a36de560 ("add a function to check if an address is in RAM memory") has no obvious style problems and is ready for submission. | |
------------------------------------------------------------------------------- | |
Commit 082f57f62170 ("efi_memory: notify of any changes to the EFI memory map") | |
------------------------------------------------------------------------------- | |
WARNING: Use 'if (IS_ENABLED(CONFIG...))' instead of '#if or #ifdef' where possible | |
#45: FILE: lib/efi_loader/efi_memory.c:73: | |
+#if CONFIG_IS_ENABLED(MEM_MAP_UPDATE_NOTIFY) | |
total: 0 errors, 1 warnings, 0 checks, 49 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit 082f57f62170 ("efi_memory: notify of any changes to the EFI memory map") has style problems, please review. | |
------------------------------------------------------------------------ | |
Commit 74d78fb3fb94 ("lmb: notify of any changes to the LMB memory map") | |
------------------------------------------------------------------------ | |
WARNING: externs should be avoided in .c files | |
#40: FILE: lib/lmb.c:27: | |
+extern bool is_addr_in_ram(uintptr_t addr); | |
total: 0 errors, 1 warnings, 0 checks, 91 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit 74d78fb3fb94 ("lmb: notify of any changes to the LMB memory map") has style problems, please review. | |
----------------------------------------------------------------------------- | |
Commit 5ea41ec430e3 ("efi_memory: add an event handler to update memory map") | |
----------------------------------------------------------------------------- | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#67: FILE: lib/efi_loader/efi_memory.c:118: | |
+} | |
+EVENT_SPY_FULL(EVT_LMB_MAP_UPDATE, lmb_mem_map_update_sync); | |
total: 0 errors, 0 warnings, 1 checks, 94 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit 5ea41ec430e3 ("efi_memory: add an event handler to update memory map") has style problems, please review. | |
---------------------------------------------------------------------- | |
Commit 4fb580d063fc ("lmb: add an event handler to update memory map") | |
---------------------------------------------------------------------- | |
WARNING: Use 'if (IS_ENABLED(CONFIG...))' instead of '#if or #ifdef' where possible | |
#51: FILE: lib/lmb.c:724: | |
+#if CONFIG_IS_ENABLED(MEM_MAP_UPDATE_NOTIFY) | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#81: FILE: lib/lmb.c:754: | |
+} | |
+EVENT_SPY_FULL(EVT_EFI_MEM_MAP_UPDATE, efi_mem_map_update_sync); | |
total: 0 errors, 1 warnings, 1 checks, 50 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit 4fb580d063fc ("lmb: add an event handler to update memory map") has style problems, please review. | |
------------------------------------------------------------- | |
Commit f00ad16e3447 ("lmb: remove call to efi_lmb_reserve()") | |
------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 47 lines checked | |
Commit f00ad16e3447 ("lmb: remove call to efi_lmb_reserve()") has no obvious style problems and is ready for submission. | |
--------------------------------------------------------------------------- | |
Commit bfe48849683e ("sandbox: iommu: remove lmb allocation in the driver") | |
--------------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 31 lines checked | |
Commit bfe48849683e ("sandbox: iommu: remove lmb allocation in the driver") has no obvious style problems and is ready for submission. | |
-------------------------------------------------------------------------- | |
Commit 1911283b8ec3 ("zynq: lmb: do not add to lmb map before relocation") | |
-------------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 43 lines checked | |
Commit 1911283b8ec3 ("zynq: lmb: do not add to lmb map before relocation") has no obvious style problems and is ready for submission. | |
--------------------------------------------------------------------------- | |
Commit b3f898b0b251 ("test: cedit: use allocated address for reading file") | |
--------------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 23 lines checked | |
Commit b3f898b0b251 ("test: cedit: use allocated address for reading file") has no obvious style problems and is ready for submission. | |
-------------------------------------------------------------------------- | |
Commit c8db5ff1ae89 ("test: event: update the expected event dump output") | |
-------------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 11 lines checked | |
Commit c8db5ff1ae89 ("test: event: update the expected event dump output") has no obvious style problems and is ready for submission. | |
-------------------------------------------------------------------- | |
Commit 055efd2fb224 ("test: lmb: run the LMB tests only on sandbox") | |
-------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 8 lines checked | |
Commit 055efd2fb224 ("test: lmb: run the LMB tests only on sandbox") has no obvious style problems and is ready for submission. | |
---------------------------------------------------------------------------- | |
Commit 6d6f1b6109a7 ("test: lmb: initialise the lmb structure before tests") | |
---------------------------------------------------------------------------- | |
WARNING: Use 'if (IS_ENABLED(CONFIG...))' instead of '#if or #ifdef' where possible | |
#43: FILE: lib/lmb.c:722: | |
+#if CONFIG_IS_ENABLED(SANDBOX) | |
WARNING: Use 'if (IS_ENABLED(CONFIG...))' instead of '#if or #ifdef' where possible | |
#46: FILE: lib/lmb.c:725: | |
+#if IS_ENABLED(CONFIG_LMB_USE_MAX_REGIONS) | |
total: 0 errors, 2 warnings, 0 checks, 102 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit 6d6f1b6109a7 ("test: lmb: initialise the lmb structure before tests") has style problems, please review. | |
-------------------------------------------------------------------------------------- | |
Commit 20769b537485 ("test: lmb: add a test case for checking overlapping region add") | |
-------------------------------------------------------------------------------------- | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#39: FILE: test/lib/lmb.c:435: | |
+} | |
+LIB_TEST(lib_test_lmb_overlapping_add, 0); | |
total: 0 errors, 0 warnings, 1 checks, 22 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit 20769b537485 ("test: lmb: add a test case for checking overlapping region add") has style problems, please review. | |
------------------------------------------------------------------------------------- | |
Commit 31f77871883c ("test: lmb: adjust the test case to handle overlapping regions") | |
------------------------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 19 lines checked | |
Commit 31f77871883c ("test: lmb: adjust the test case to handle overlapping regions") has no obvious style problems and is ready for submission. | |
-------------------------------------------------------------- | |
Commit 11de4be5b31a ("test: lmb: run lmb tests only manually") | |
-------------------------------------------------------------- | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#36: FILE: test/lib/lmb.c:209: | |
} | |
+LIB_TEST(lib_test_lmb_simple_norun, UT_TESTF_MANUAL); | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#49: FILE: test/lib/lmb.c:224: | |
} | |
+LIB_TEST(lib_test_lmb_simple_x2_norun, UT_TESTF_MANUAL); | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#67: FILE: test/lib/lmb.c:289: | |
} | |
+LIB_TEST(lib_test_lmb_big_norun, UT_TESTF_MANUAL); | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#84: FILE: test/lib/lmb.c:362: | |
} | |
+LIB_TEST(lib_test_lmb_noreserved_norun, UT_TESTF_MANUAL); | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#98: FILE: test/lib/lmb.c:376: | |
} | |
+LIB_TEST(lib_test_lmb_unaligned_size_norun, UT_TESTF_MANUAL); | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#114: FILE: test/lib/lmb.c:418: | |
} | |
+LIB_TEST(lib_test_lmb_at_0_norun, UT_TESTF_MANUAL); | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#126: FILE: test/lib/lmb.c:434: | |
} | |
+LIB_TEST(lib_test_lmb_overlapping_add_norun, UT_TESTF_MANUAL); | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#139: FILE: test/lib/lmb.c:481: | |
} | |
+LIB_TEST(lib_test_lmb_overlapping_reserve_norun, UT_TESTF_MANUAL); | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#157: FILE: test/lib/lmb.c:609: | |
} | |
+LIB_TEST(lib_test_lmb_alloc_addr_norun, UT_TESTF_MANUAL); | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#175: FILE: test/lib/lmb.c:678: | |
} | |
+LIB_TEST(lib_test_lmb_get_free_size_norun, UT_TESTF_MANUAL); | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#188: FILE: test/lib/lmb.c:746: | |
} | |
+LIB_TEST(lib_test_lmb_max_regions_norun, UT_TESTF_MANUAL); | |
CHECK: Please use a blank line after function/struct/union/enum declarations | |
#201: FILE: test/lib/lmb.c:833: | |
} | |
+LIB_TEST(lib_test_lmb_flags_norun, UT_TESTF_MANUAL); | |
total: 0 errors, 0 warnings, 12 checks, 163 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit 11de4be5b31a ("test: lmb: run lmb tests only manually") has style problems, please review. | |
-------------------------------------------------------------------- | |
Commit b7a88cbd4a93 ("test: bdinfo: dump the global LMB memory map") | |
-------------------------------------------------------------------- | |
WARNING: Possible repeated word: 'the' | |
#7: | |
persistent and global. Make corresponding change the the | |
WARNING: externs should be avoided in .c files | |
#24: FILE: test/cmd/bdinfo.c:27: | |
+extern struct lmb lmb; | |
total: 0 errors, 2 warnings, 0 checks, 33 lines checked | |
NOTE: For some of the reported defects, checkpatch may be able to | |
mechanically convert to the typical style using --fix or --fix-inplace. | |
Commit b7a88cbd4a93 ("test: bdinfo: dump the global LMB memory map") has style problems, please review. | |
--------------------------------------------------------------------- | |
Commit d3d178715a88 ("cmd: bdinfo: only dump the current LMB memory") | |
--------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 7 lines checked | |
Commit d3d178715a88 ("cmd: bdinfo: only dump the current LMB memory") has no obvious style problems and is ready for submission. | |
----------------------------------------------------------------------------- | |
Commit 9c2110761d15 ("temp: mx6sabresd: bump up the size limit of the board") | |
----------------------------------------------------------------------------- | |
total: 0 errors, 0 warnings, 0 checks, 8 lines checked | |
Commit 9c2110761d15 ("temp: mx6sabresd: bump up the size limit of the board") has no obvious style problems and is ready for submission. | |
NOTE: Ignored message types: COMPLEX_MACRO CONSIDER_KSTRTO ENOSYS MINMAX MULTISTATEMENT_MACRO_USE_DO_WHILE NETWORKING_BLOCK_COMMENT_STYLE PREFER_ETHER_ADDR_COPY USLEEP_RANGE | |
NOTE: If any of the errors are false positives, please report | |
them to the maintainer, see CHECKPATCH in MAINTAINERS. | |
Checking for Kconfig changes... | |
Generating board list... | |
Dry run, so not doing much. But I would do this: | |
Building 2 commits for 1314 boards (40 threads, 1 job per thread) | |
Build directory: /build/trini/tmp.7EVSvUoCHK/RFC_rfcv1-lmb-rework | |
f9886bc6 Added arm64 assembly for examples/api crt0 | |
9c211076 temp: mx6sabresd: bump up the size limit of the board | |
Total boards to build for each commit: 1314 | |
Checking for Kconfig changes... | |
/build/trini/tmp.7EVSvUoCHK/RFC_rfcv1-lmb-rework/boards.cfg is up to date. Nothing to do. | |
Summary of 2 commits for 1314 boards (40 threads, 1 job per thread) | |
01: Added arm64 assembly for examples/api crt0 | |
aarch64: w+ bcm94908 bcm94912 bcm963146 bcm963158 bcm96813 bcm96856 bcm96858 ls1012afrdm_tfa ls1012afrwy_tfa ls1012afrwy_tfa_SECURE_BOOT ls1012aqds_tfa ls1012aqds_tfa_SECURE_BOOT ls1012a2g5rdb_tfa ls1012ardb_tfa ls1012ardb_tfa_SECURE_BOOT ls1043aqds_tfa ls1043aqds_tfa_SECURE_BOOT ls1046aqds_tfa ls1046aqds_tfa_SECURE_BOOT ls2080aqds_nand ls2080aqds_qspi ls2080ardb_nand imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek imx8qxp_mek deneb giedi apalis-imx8 colibri-imx8x imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G imx8mm_beacon imx8mm_beacon_fspi imx8mn_beacon imx8mn_beacon_2g imx8mn_beacon_fspi imx8mp_beacon imx8mn_bsh_smm_s2 imx8mn_bsh_smm_s2pro imx8mm_phg imx8mm-cl-iot-gate imx8mm-cl-iot-gate-optee imx8mm_data_modul_edm_sbc imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mp-icore-mx8mp-edimm2.2 imx8mm_evk imx8mm_evk_fspi imx8mn_ddr4_evk imx8mn_evk imx8mp_evk imx8mq_evk imx8mm_venice imx8mn_venice imx8mp_venice imx8mq_phanbell kontron_pitx_imx8m kontron-sl-mx8mm imx8mm-mx8menlo imx8mq_reform2 msc_sm2s_imx8mp imx8mm-phygate-tauri-l phycore-imx8mm phycore-imx8mp imx8mp_debix_model_a librem5 imx8mq_cm pico-imx8mq verdin-imx8mm verdin-imx8mp imx8mn_var_som imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som j721e_beagleboneai64_a72 am62x_beagleplay_a53 phycore_am62x_a53 phycore_am64x_a53 iot2050 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53 x240 turris_mox mvebu_ac5_rd eDPU mvebu_db-88f3720 mvebu_espressobin-88f3720 uDPU clearfog_gt_8k mvebu_db_armada8k mvebu_mcbin-88f8040 mvebu_puzzle-m801-88f8040 mvebu_crb_cn9130 mvebu_db_cn9130 px30-core-ctouch2-of10-px30 px30-core-ctouch2-px30 px30-core-edimm2.2-px30 odroid-go2 evb-px30 firefly-px30 ringneck-px30 roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 evb-rk3328 nanopi-r2c-plus-rk3328 nanopi-r2c-rk3328 nanopi-r2s-rk3328 orangepi-r1-plus-lts-rk3328 orangepi-r1-plus-rk3328 roc-cc-rk3328 rock-pi-e-rk3328 rock64-rk3328 evb-px5 lion-rk3368 roc-pc-mezzanine-rk3399 roc-pc-rk3399 chromebook_bob chromebook_kevin pinebook-pro-rk3399 pinephone-pro-rk3399 rockpro64-rk3399 rock-4c-plus-rk3399 rock-4se-rk3399 rock-pi-4-rk3399 rock-pi-4c-rk3399 eaidk-610-rk3399 evb-rk3399 firefly-rk3399 khadas-edge-captain-rk3399 khadas-edge-rk3399 khadas-edge-v-rk3399 leez-rk3399 nanopc-t4-rk3399 nanopi-m4-2gb-rk3399 nanopi-m4-rk3399 nanopi-m4b-rk3399 nanopi-neo4-rk3399 nanopi-r4s-rk3399 orangepi-rk3399 rock-pi-n10-rk3399pro puma-rk3399 ficus-rk3399 rock960-rk3399 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588 socfpga_stratix10_atf socfpga_agilex_atf socfpga_agilex_vab socfpga_agilex5 socfpga_n5x_atf socfpga_n5x_vab a64-olinuxino a64-olinuxino-emmc amarula_a64_relic bananapi_m2_plus_h5 bananapi_m64 beelink_gs1 emlid_neutis_n5_devboard libretech_all_h3_cc_h5 libretech_all_h3_it_h5 libretech_all_h5_cc_h5 nanopi_a64 nanopi_neo2 nanopi_neo_plus2 nanopi_r1s_h5 oceanic_5205_5inmfd orangepi_3 orangepi_lite2 orangepi_one_plus orangepi_pc2 orangepi_prime orangepi_win orangepi_zero2 orangepi_zero2w orangepi_zero3 orangepi_zero_plus orangepi_zero_plus2 pine64-lts pine64_plus pine_h64 pinebook pinephone pinetab sopine_baseboard tanix_tx6 teres_i transpeed-8k618-t x96_mate xilinx_versal_mini_emmc0 xilinx_versal_mini_emmc1 xilinx_versal_net_mini xilinx_versal_net_mini_emmc xilinx_zynqmp_kria xilinx_zynqmp_mini xilinx_zynqmp_mini_emmc0 xilinx_zynqmp_mini_emmc1 xilinx_zynqmp_mini_nand xilinx_zynqmp_mini_nand_single xilinx_zynqmp_mini_qspi xilinx_zynqmp_virt | |
arc: w+ tb100 axs101 nsim_700 nsim_700be axs103 emsdp hsdk hsdk_4xd iot_devkit nsim_hs38 nsim_hs38be | |
arm: w+ ethernut5 smartweb SBx81LIFKW SBx81LIFXCAT dns325 d2net_v2 net2big_v2 inetspace_v2 netspace_lite_v2 netspace_max_v2 netspace_mini_v2 netspace_v2 guruplug openrd_base openrd_client openrd_ultimate ib62x0 nas220 ds109 devkit3250 work_92105 vexpress_ca9x4 bcmns am335x_shc am335x_shc_ict am335x_shc_netboot am335x_shc_sdboot brsmarc1 cm_t43 chiliboard am335x_igep003x draco-etamin draco-rastaban draco-thuban pxm2 rut am335x_sl50 am43xx_evm_qspiboot am43xx_hs_evm_qspi vinco bcm947622 bcm963138 bcm963148 bcm963178 bcm96756 bcm96846 bcm96855 bcm96878 j721e_beagleboneai64_r5 am62x_beagleplay_r5 phycore_am62x_r5 phycore_am64x_r5 am62ax_evm_r5 am62px_evm_r5 am62x_evm_r5 am64x_evm_r5 am65x_evm_r5 am65x_evm_r5_usbdfu am65x_evm_r5_usbmsc j7200_evm_r5 j721e_evm_r5 j721e_sk_r5 am68_sk_r5 j721s2_evm_r5 am69_sk_r5 j784s4_evm_r5 verdin-am62_r5 ls1021aiot_qspi ls1021aiot_sdcard ls1021aqds_nand ls1021aqds_nor_SECURE_BOOT ls1021aqds_qspi ls1021aqds_sdcard_ifc ls1021aqds_sdcard_qspi ls1021atsn_qspi ls1021atsn_sdcard ls1021atwr_nor_SECURE_BOOT ls1021atwr_qspi ls1021atwr_sdcard_ifc ls1021atwr_sdcard_ifc_SECURE_BOOT ls1021atwr_sdcard_qspi pg_wcom_expu1 pg_wcom_expu1_update pg_wcom_seli8 pg_wcom_seli8_update db-88f6720 db-88f6820-gp mx6qsabrelite nitrogen6dl nitrogen6dl2g nitrogen6q nitrogen6q2g nitrogen6s nitrogen6s1g imx6dl_mamoj cm_fx6 marsboard riotboard imx6qdl_icore_mmc imx6ul_geam_mmc imx6ul_geam_nand imx6ul_isiot_emmc imx6ul_isiot_nand mx6memcal ge_b1x5v2 liteboard kontron-sl-mx6ul novena vining_2000 tbs2910 cl-som-imx7 imx7_cm omap3_beagle igep00x0 sniper omap4_panda omap4_sdp4430 evb-rk3229 evb-rk3288 sonoff-ihost-rv1126 smdkc100 socfpga_secu1 vf610twr vf610twr_nand topic_miami topic_miamilite topic_miamiplus zynq_cse_nand zynq_cse_nor zynq_cse_qspi xilinx_zynqmp_r5 imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk | |
microblaze: w+ microblaze-generic | |
mips: w+ mt7621_nand_rfb mt7621_rfb boston64r2 boston64r2el boston64r6 boston64r6el malta64 malta64el octeon_ebb7304 octeon_nic23 | |
powerpc: w+ MPC837XERDB MPC8548CDS MPC8548CDS_36BIT MPC8548CDS_legacy P1010RDB-PA_36BIT_NAND P1010RDB-PA_36BIT_NOR P1010RDB-PA_36BIT_SDCARD P1010RDB-PA_36BIT_SPIFLASH P1010RDB-PA_NAND P1010RDB-PA_NOR P1010RDB-PA_SDCARD P1010RDB-PA_SPIFLASH P1010RDB-PB_36BIT_NAND P1010RDB-PB_36BIT_NOR P1010RDB-PB_36BIT_SDCARD P1010RDB-PB_36BIT_SPIFLASH P1010RDB-PB_NAND P1010RDB-PB_NOR P1010RDB-PB_SDCARD P1010RDB-PB_SPIFLASH P1020RDB-PC P1020RDB-PC_36BIT P1020RDB-PC_36BIT_NAND P1020RDB-PC_36BIT_SDCARD P1020RDB-PC_36BIT_SPIFLASH P1020RDB-PC_NAND P1020RDB-PC_SDCARD P1020RDB-PC_SPIFLASH P1020RDB-PD P1020RDB-PD_NAND P1020RDB-PD_SDCARD P1020RDB-PD_SPIFLASH P2020RDB-PC P2020RDB-PC_36BIT P2020RDB-PC_36BIT_NAND P2020RDB-PC_36BIT_SDCARD P2020RDB-PC_36BIT_SPIFLASH P2020RDB-PC_NAND P2020RDB-PC_SDCARD P2020RDB-PC_SPIFLASH P2041RDB P2041RDB_NAND P2041RDB_SDCARD P2041RDB_SPIFLASH T1024RDB_NAND T1024RDB_SDCARD T1024RDB_SPIFLASH T1042D4RDB_NAND T1042D4RDB_SDCARD T1042D4RDB_SPIFLASH T2080QDS T2080QDS_NAND T2080QDS_SDCARD T2080QDS_SECURE_BOOT T2080QDS_SPIFLASH T2080QDS_SRIO_PCIE_BOOT T2080RDB_NAND T2080RDB_revD_NAND T2080RDB_revD_SDCARD T2080RDB_revD_SPIFLASH T2080RDB_SDCARD T2080RDB_SPIFLASH T4240RDB_SDCARD kmcent2 | |
riscv32: w+ ae350_rv32_falcon ae350_rv32_falcon_xip ae350_rv32_spl ae350_rv32_spl_xip qemu-riscv32_spl xilinx_mbv32 xilinx_mbv32_smode | |
riscv64: w+ ae350_rv64_falcon ae350_rv64_falcon_xip ae350_rv64_spl ae350_rv64_spl_xip sifive_unleashed sifive_unmatched qemu-riscv64_spl openpiton_riscv64 starfive_visionfive2 | |
sandbox: w+ sandbox64 | |
x86: w+ chromebook_coral som-db5800-som-6867 conga-qeval20-qa3-e3845 conga-qeval20-qa3-e3845-internal-uart theadorable-x86-conga-qa3-e3845 theadorable-x86-conga-qa3-e3845-pcie-x4 dfi-bt700-q7x-151 theadorable-x86-dfi-bt700 bayleybay minnowmax cherryhill chromebook_samus chromebook_samus_tpl chromebook_link chromebook_link64 chromebox_panther cougarcanyon2 galileo crownbay | |
xtensa: w+ xtfpga | |
+(bcm94908 bcm94912 bcm963146 bcm963158 bcm96813 bcm96856 bcm96858 ls1012afrdm_tfa ls1012afrwy_tfa ls1012afrwy_tfa_SECURE_BOOT ls1012aqds_tfa ls1012aqds_tfa_SECURE_BOOT ls1012a2g5rdb_tfa ls1012ardb_tfa ls1012ardb_tfa_SECURE_BOOT ls1043aqds_tfa ls1043aqds_tfa_SECURE_BOOT ls1046aqds_tfa ls1046aqds_tfa_SECURE_BOOT ls2080aqds_nand ls2080aqds_qspi ls2080ardb_nand librem5 xilinx_versal_mini_emmc0 xilinx_versal_mini_emmc1 xilinx_versal_net_mini xilinx_versal_net_mini_emmc xilinx_zynqmp_kria xilinx_zynqmp_mini xilinx_zynqmp_mini_emmc0 xilinx_zynqmp_mini_emmc1 xilinx_zynqmp_mini_nand xilinx_zynqmp_mini_nand_single xilinx_zynqmp_mini_qspi xilinx_zynqmp_virt tb100 axs101 nsim_700 nsim_700be axs103 emsdp hsdk hsdk_4xd iot_devkit nsim_hs38 nsim_hs38be ethernut5 smartweb SBx81LIFKW SBx81LIFXCAT dns325 d2net_v2 net2big_v2 inetspace_v2 netspace_lite_v2 netspace_max_v2 netspace_mini_v2 netspace_v2 guruplug openrd_base openrd_client openrd_ultimate ib62x0 nas220 ds109 devkit3250 work_92105 vexpress_ca9x4 bcmns am335x_shc am335x_shc_ict am335x_shc_netboot am335x_shc_sdboot cm_t43 chiliboard am335x_igep003x draco-etamin draco-rastaban draco-thuban pxm2 rut am335x_sl50 am43xx_evm_qspiboot am43xx_hs_evm_qspi vinco bcm947622 bcm963138 bcm963148 bcm963178 bcm96756 bcm96846 bcm96855 bcm96878 ls1021aiot_qspi ls1021aiot_sdcard ls1021aqds_nand ls1021aqds_nor_SECURE_BOOT ls1021aqds_qspi ls1021aqds_sdcard_ifc ls1021aqds_sdcard_qspi ls1021atsn_qspi ls1021atsn_sdcard ls1021atwr_nor_SECURE_BOOT ls1021atwr_qspi ls1021atwr_sdcard_ifc ls1021atwr_sdcard_ifc_SECURE_BOOT ls1021atwr_sdcard_qspi pg_wcom_expu1 pg_wcom_expu1_update pg_wcom_seli8 pg_wcom_seli8_update db-88f6720 db-88f6820-gp mx6qsabrelite nitrogen6dl nitrogen6dl2g nitrogen6q nitrogen6q2g nitrogen6s nitrogen6s1g imx6dl_mamoj cm_fx6 marsboard riotboard imx6qdl_icore_mmc imx6ul_geam_mmc imx6ul_geam_nand imx6ul_isiot_emmc imx6ul_isiot_nand mx6memcal liteboard kontron-sl-mx6ul novena vining_2000 tbs2910 cl-som-imx7 imx7_cm omap3_beagle igep00x0 sniper omap4_panda omap4_sdp4430 vf610twr vf610twr_nand topic_miami topic_miamilite topic_miamiplus zynq_cse_nand zynq_cse_nor zynq_cse_qspi xilinx_zynqmp_r5 microblaze-generic MPC837XERDB MPC8548CDS MPC8548CDS_36BIT MPC8548CDS_legacy P1010RDB-PA_36BIT_NAND P1010RDB-PA_36BIT_NOR P1010RDB-PA_36BIT_SDCARD P1010RDB-PA_36BIT_SPIFLASH P1010RDB-PA_NAND P1010RDB-PA_NOR P1010RDB-PA_SDCARD P1010RDB-PA_SPIFLASH P1010RDB-PB_36BIT_NAND P1010RDB-PB_36BIT_NOR P1010RDB-PB_36BIT_SDCARD P1010RDB-PB_36BIT_SPIFLASH P1010RDB-PB_NAND P1010RDB-PB_NOR P1010RDB-PB_SDCARD P1010RDB-PB_SPIFLASH P1020RDB-PC P1020RDB-PC_36BIT P1020RDB-PC_36BIT_NAND P1020RDB-PC_36BIT_SDCARD P1020RDB-PC_36BIT_SPIFLASH P1020RDB-PC_NAND P1020RDB-PC_SDCARD P1020RDB-PC_SPIFLASH P1020RDB-PD P1020RDB-PD_NAND P1020RDB-PD_SDCARD P1020RDB-PD_SPIFLASH P2020RDB-PC P2020RDB-PC_36BIT P2020RDB-PC_36BIT_NAND P2020RDB-PC_36BIT_SDCARD P2020RDB-PC_36BIT_SPIFLASH P2020RDB-PC_NAND P2020RDB-PC_SDCARD P2020RDB-PC_SPIFLASH P2041RDB P2041RDB_NAND P2041RDB_SDCARD P2041RDB_SPIFLASH T1024RDB_NAND T1024RDB_SDCARD T1024RDB_SPIFLASH T1042D4RDB_NAND T1042D4RDB_SDCARD T1042D4RDB_SPIFLASH T2080QDS T2080QDS_NAND T2080QDS_SDCARD T2080QDS_SECURE_BOOT T2080QDS_SPIFLASH T2080QDS_SRIO_PCIE_BOOT T2080RDB_NAND T2080RDB_revD_NAND T2080RDB_revD_SDCARD T2080RDB_revD_SPIFLASH T2080RDB_SDCARD T2080RDB_SPIFLASH T4240RDB_SDCARD kmcent2 openpiton_riscv64 xtfpga) ===================== WARNING ====================== | |
+(bcm94908 bcm94912 bcm963146 bcm963158 bcm96813 bcm96856 bcm96858 ls2080aqds_nand ls2080aqds_qspi xilinx_versal_mini_emmc0 xilinx_versal_mini_emmc1 xilinx_versal_net_mini xilinx_versal_net_mini_emmc xilinx_zynqmp_mini xilinx_zynqmp_mini_emmc0 xilinx_zynqmp_mini_emmc1 xilinx_zynqmp_mini_nand xilinx_zynqmp_mini_nand_single xilinx_zynqmp_mini_qspi tb100 axs101 nsim_700 nsim_700be axs103 emsdp hsdk hsdk_4xd iot_devkit nsim_hs38 nsim_hs38be smartweb vexpress_ca9x4 bcmns draco-etamin draco-rastaban draco-thuban pxm2 rut bcm947622 bcm963138 bcm963148 bcm963178 bcm96756 bcm96846 bcm96855 bcm96878 tbs2910 topic_miami topic_miamilite topic_miamiplus zynq_cse_nand zynq_cse_nor zynq_cse_qspi xilinx_zynqmp_r5 microblaze-generic openpiton_riscv64) CONFIG_OF_EMBED is enabled. This option should only | |
+(bcm94908 bcm94912 bcm963146 bcm963158 bcm96813 bcm96856 bcm96858 ls2080aqds_nand ls2080aqds_qspi xilinx_versal_mini_emmc0 xilinx_versal_mini_emmc1 xilinx_versal_net_mini xilinx_versal_net_mini_emmc xilinx_zynqmp_mini xilinx_zynqmp_mini_emmc0 xilinx_zynqmp_mini_emmc1 xilinx_zynqmp_mini_nand xilinx_zynqmp_mini_nand_single xilinx_zynqmp_mini_qspi tb100 axs101 nsim_700 nsim_700be axs103 emsdp hsdk hsdk_4xd iot_devkit nsim_hs38 nsim_hs38be smartweb vexpress_ca9x4 bcmns draco-etamin draco-rastaban draco-thuban pxm2 rut bcm947622 bcm963138 bcm963148 bcm963178 bcm96756 bcm96846 bcm96855 bcm96878 tbs2910 topic_miami topic_miamilite topic_miamiplus zynq_cse_nand zynq_cse_nor zynq_cse_qspi xilinx_zynqmp_r5 microblaze-generic openpiton_riscv64) be used for debugging purposes. Please use | |
+(bcm94908 bcm94912 bcm963146 bcm963158 bcm96813 bcm96856 bcm96858 ls2080aqds_nand ls2080aqds_qspi xilinx_versal_mini_emmc0 xilinx_versal_mini_emmc1 xilinx_versal_net_mini xilinx_versal_net_mini_emmc xilinx_zynqmp_mini xilinx_zynqmp_mini_emmc0 xilinx_zynqmp_mini_emmc1 xilinx_zynqmp_mini_nand xilinx_zynqmp_mini_nand_single xilinx_zynqmp_mini_qspi tb100 axs101 nsim_700 nsim_700be axs103 emsdp hsdk hsdk_4xd iot_devkit nsim_hs38 nsim_hs38be smartweb vexpress_ca9x4 bcmns draco-etamin draco-rastaban draco-thuban pxm2 rut bcm947622 bcm963138 bcm963148 bcm963178 bcm96756 bcm96846 bcm96855 bcm96878 tbs2910 topic_miami topic_miamilite topic_miamiplus zynq_cse_nand zynq_cse_nor zynq_cse_qspi xilinx_zynqmp_r5 microblaze-generic openpiton_riscv64) CONFIG_OF_SEPARATE for boards in mainline. | |
+(bcm94908 bcm94912 bcm963146 bcm963158 bcm96813 bcm96856 bcm96858 ls2080aqds_nand ls2080aqds_qspi xilinx_versal_mini_emmc0 xilinx_versal_mini_emmc1 xilinx_versal_net_mini xilinx_versal_net_mini_emmc xilinx_zynqmp_mini xilinx_zynqmp_mini_emmc0 xilinx_zynqmp_mini_emmc1 xilinx_zynqmp_mini_nand xilinx_zynqmp_mini_nand_single xilinx_zynqmp_mini_qspi tb100 axs101 nsim_700 nsim_700be axs103 emsdp hsdk hsdk_4xd iot_devkit nsim_hs38 nsim_hs38be smartweb vexpress_ca9x4 bcmns draco-etamin draco-rastaban draco-thuban pxm2 rut bcm947622 bcm963138 bcm963148 bcm963178 bcm96756 bcm96846 bcm96855 bcm96878 tbs2910 topic_miami topic_miamilite topic_miamiplus zynq_cse_nand zynq_cse_nor zynq_cse_qspi xilinx_zynqmp_r5 microblaze-generic openpiton_riscv64) See doc/develop/devicetree/control.rst for more info. | |
+(bcm94908 bcm94912 bcm963146 bcm963158 bcm96813 bcm96856 bcm96858 ls1012afrdm_tfa ls1012afrwy_tfa ls1012afrwy_tfa_SECURE_BOOT ls1012aqds_tfa ls1012aqds_tfa_SECURE_BOOT ls1012a2g5rdb_tfa ls1012ardb_tfa ls1012ardb_tfa_SECURE_BOOT ls1043aqds_tfa ls1043aqds_tfa_SECURE_BOOT ls1046aqds_tfa ls1046aqds_tfa_SECURE_BOOT ls2080aqds_nand ls2080aqds_qspi ls2080ardb_nand librem5 xilinx_versal_mini_emmc0 xilinx_versal_mini_emmc1 xilinx_versal_net_mini xilinx_versal_net_mini_emmc xilinx_zynqmp_kria xilinx_zynqmp_mini xilinx_zynqmp_mini_emmc0 xilinx_zynqmp_mini_emmc1 xilinx_zynqmp_mini_nand xilinx_zynqmp_mini_nand_single xilinx_zynqmp_mini_qspi xilinx_zynqmp_virt tb100 axs101 nsim_700 nsim_700be axs103 emsdp hsdk hsdk_4xd iot_devkit nsim_hs38 nsim_hs38be ethernut5 smartweb SBx81LIFKW SBx81LIFXCAT dns325 d2net_v2 net2big_v2 inetspace_v2 netspace_lite_v2 netspace_max_v2 netspace_mini_v2 netspace_v2 guruplug openrd_base openrd_client openrd_ultimate ib62x0 nas220 ds109 devkit3250 work_92105 vexpress_ca9x4 bcmns am335x_shc am335x_shc_ict am335x_shc_netboot am335x_shc_sdboot cm_t43 chiliboard am335x_igep003x draco-etamin draco-rastaban draco-thuban pxm2 rut am335x_sl50 am43xx_evm_qspiboot am43xx_hs_evm_qspi vinco bcm947622 bcm963138 bcm963148 bcm963178 bcm96756 bcm96846 bcm96855 bcm96878 ls1021aiot_qspi ls1021aiot_sdcard ls1021aqds_nand ls1021aqds_nor_SECURE_BOOT ls1021aqds_qspi ls1021aqds_sdcard_ifc ls1021aqds_sdcard_qspi ls1021atsn_qspi ls1021atsn_sdcard ls1021atwr_nor_SECURE_BOOT ls1021atwr_qspi ls1021atwr_sdcard_ifc ls1021atwr_sdcard_ifc_SECURE_BOOT ls1021atwr_sdcard_qspi pg_wcom_expu1 pg_wcom_expu1_update pg_wcom_seli8 pg_wcom_seli8_update db-88f6720 db-88f6820-gp mx6qsabrelite nitrogen6dl nitrogen6dl2g nitrogen6q nitrogen6q2g nitrogen6s nitrogen6s1g imx6dl_mamoj cm_fx6 marsboard riotboard imx6qdl_icore_mmc imx6ul_geam_mmc imx6ul_geam_nand imx6ul_isiot_emmc imx6ul_isiot_nand mx6memcal liteboard kontron-sl-mx6ul novena vining_2000 tbs2910 cl-som-imx7 imx7_cm omap3_beagle igep00x0 sniper omap4_panda omap4_sdp4430 vf610twr vf610twr_nand topic_miami topic_miamilite topic_miamiplus zynq_cse_nand zynq_cse_nor zynq_cse_qspi xilinx_zynqmp_r5 microblaze-generic MPC837XERDB MPC8548CDS MPC8548CDS_36BIT MPC8548CDS_legacy P1010RDB-PA_36BIT_NAND P1010RDB-PA_36BIT_NOR P1010RDB-PA_36BIT_SDCARD P1010RDB-PA_36BIT_SPIFLASH P1010RDB-PA_NAND P1010RDB-PA_NOR P1010RDB-PA_SDCARD P1010RDB-PA_SPIFLASH P1010RDB-PB_36BIT_NAND P1010RDB-PB_36BIT_NOR P1010RDB-PB_36BIT_SDCARD P1010RDB-PB_36BIT_SPIFLASH P1010RDB-PB_NAND P1010RDB-PB_NOR P1010RDB-PB_SDCARD P1010RDB-PB_SPIFLASH P1020RDB-PC P1020RDB-PC_36BIT P1020RDB-PC_36BIT_NAND P1020RDB-PC_36BIT_SDCARD P1020RDB-PC_36BIT_SPIFLASH P1020RDB-PC_NAND P1020RDB-PC_SDCARD P1020RDB-PC_SPIFLASH P1020RDB-PD P1020RDB-PD_NAND P1020RDB-PD_SDCARD P1020RDB-PD_SPIFLASH P2020RDB-PC P2020RDB-PC_36BIT P2020RDB-PC_36BIT_NAND P2020RDB-PC_36BIT_SDCARD P2020RDB-PC_36BIT_SPIFLASH P2020RDB-PC_NAND P2020RDB-PC_SDCARD P2020RDB-PC_SPIFLASH P2041RDB P2041RDB_NAND P2041RDB_SDCARD P2041RDB_SPIFLASH T1024RDB_NAND T1024RDB_SDCARD T1024RDB_SPIFLASH T1042D4RDB_NAND T1042D4RDB_SDCARD T1042D4RDB_SPIFLASH T2080QDS T2080QDS_NAND T2080QDS_SDCARD T2080QDS_SECURE_BOOT T2080QDS_SPIFLASH T2080QDS_SRIO_PCIE_BOOT T2080RDB_NAND T2080RDB_revD_NAND T2080RDB_revD_SDCARD T2080RDB_revD_SPIFLASH T2080RDB_SDCARD T2080RDB_SPIFLASH T4240RDB_SDCARD kmcent2 openpiton_riscv64 xtfpga) ==================================================== | |
+(ls1012afrdm_tfa ls1012afrwy_tfa ls1012afrwy_tfa_SECURE_BOOT ls1012aqds_tfa ls1012aqds_tfa_SECURE_BOOT ls1012a2g5rdb_tfa ls1012ardb_tfa ls1012ardb_tfa_SECURE_BOOT ls1043aqds_tfa ls1043aqds_tfa_SECURE_BOOT ls1046aqds_tfa ls1046aqds_tfa_SECURE_BOOT ls2080aqds_nand ls2080aqds_qspi ls2080ardb_nand librem5 SBx81LIFKW SBx81LIFXCAT dns325 d2net_v2 net2big_v2 inetspace_v2 netspace_lite_v2 netspace_max_v2 netspace_mini_v2 netspace_v2 guruplug openrd_base openrd_client openrd_ultimate ib62x0 nas220 ds109 am43xx_evm_qspiboot am43xx_hs_evm_qspi vinco ls1021aiot_qspi ls1021aiot_sdcard ls1021aqds_nand ls1021aqds_nor_SECURE_BOOT ls1021aqds_qspi ls1021aqds_sdcard_ifc ls1021aqds_sdcard_qspi ls1021atsn_qspi ls1021atsn_sdcard ls1021atwr_nor_SECURE_BOOT ls1021atwr_qspi ls1021atwr_sdcard_ifc ls1021atwr_sdcard_ifc_SECURE_BOOT ls1021atwr_sdcard_qspi mx6qsabrelite nitrogen6dl nitrogen6dl2g nitrogen6q nitrogen6q2g nitrogen6s nitrogen6s1g imx6dl_mamoj marsboard riotboard imx6ul_geam_mmc imx6ul_geam_nand imx6ul_isiot_emmc imx6ul_isiot_nand mx6memcal liteboard kontron-sl-mx6ul novena cl-som-imx7 imx7_cm omap4_panda omap4_sdp4430 MPC8548CDS MPC8548CDS_36BIT MPC8548CDS_legacy P1010RDB-PA_36BIT_NAND P1010RDB-PA_36BIT_NOR P1010RDB-PA_36BIT_SDCARD P1010RDB-PA_36BIT_SPIFLASH P1010RDB-PA_NAND P1010RDB-PA_NOR P1010RDB-PA_SDCARD P1010RDB-PA_SPIFLASH P1010RDB-PB_36BIT_NAND P1010RDB-PB_36BIT_NOR P1010RDB-PB_36BIT_SDCARD P1010RDB-PB_36BIT_SPIFLASH P1010RDB-PB_NAND P1010RDB-PB_NOR P1010RDB-PB_SDCARD P1010RDB-PB_SPIFLASH P1020RDB-PC P1020RDB-PC_36BIT P1020RDB-PC_36BIT_NAND P1020RDB-PC_36BIT_SDCARD P1020RDB-PC_36BIT_SPIFLASH P1020RDB-PC_NAND P1020RDB-PC_SDCARD P1020RDB-PC_SPIFLASH P1020RDB-PD P1020RDB-PD_NAND P1020RDB-PD_SDCARD P1020RDB-PD_SPIFLASH P2020RDB-PC P2020RDB-PC_36BIT P2020RDB-PC_36BIT_NAND P2020RDB-PC_36BIT_SDCARD P2020RDB-PC_36BIT_SPIFLASH P2020RDB-PC_NAND P2020RDB-PC_SDCARD P2020RDB-PC_SPIFLASH P2041RDB P2041RDB_NAND P2041RDB_SDCARD P2041RDB_SPIFLASH T1024RDB_NAND T1024RDB_SDCARD T1024RDB_SPIFLASH T1042D4RDB_NAND T1042D4RDB_SDCARD T1042D4RDB_SPIFLASH T2080QDS T2080QDS_NAND T2080QDS_SDCARD T2080QDS_SECURE_BOOT T2080QDS_SPIFLASH T2080QDS_SRIO_PCIE_BOOT T2080RDB_NAND T2080RDB_revD_NAND T2080RDB_revD_SDCARD T2080RDB_revD_SPIFLASH T2080RDB_SDCARD T2080RDB_SPIFLASH T4240RDB_SDCARD xtfpga) This board does not use CONFIG_DM_SERIAL (Driver Model | |
+(ls1012afrdm_tfa ls1012afrwy_tfa ls1012afrwy_tfa_SECURE_BOOT ls1012aqds_tfa ls1012aqds_tfa_SECURE_BOOT ls1012a2g5rdb_tfa ls1012ardb_tfa ls1012ardb_tfa_SECURE_BOOT ls1043aqds_tfa ls1043aqds_tfa_SECURE_BOOT ls1046aqds_tfa ls1046aqds_tfa_SECURE_BOOT ls2080aqds_nand ls2080aqds_qspi ls2080ardb_nand librem5 SBx81LIFKW SBx81LIFXCAT dns325 d2net_v2 net2big_v2 inetspace_v2 netspace_lite_v2 netspace_max_v2 netspace_mini_v2 netspace_v2 guruplug openrd_base openrd_client openrd_ultimate ib62x0 nas220 ds109 am43xx_evm_qspiboot am43xx_hs_evm_qspi vinco ls1021aiot_qspi ls1021aiot_sdcard ls1021aqds_nand ls1021aqds_nor_SECURE_BOOT ls1021aqds_qspi ls1021aqds_sdcard_ifc ls1021aqds_sdcard_qspi ls1021atsn_qspi ls1021atsn_sdcard ls1021atwr_nor_SECURE_BOOT ls1021atwr_qspi ls1021atwr_sdcard_ifc ls1021atwr_sdcard_ifc_SECURE_BOOT ls1021atwr_sdcard_qspi mx6qsabrelite nitrogen6dl nitrogen6dl2g nitrogen6q nitrogen6q2g nitrogen6s nitrogen6s1g imx6dl_mamoj marsboard riotboard imx6ul_geam_mmc imx6ul_geam_nand imx6ul_isiot_emmc imx6ul_isiot_nand mx6memcal liteboard kontron-sl-mx6ul novena cl-som-imx7 imx7_cm omap4_panda omap4_sdp4430 MPC8548CDS MPC8548CDS_36BIT MPC8548CDS_legacy P1010RDB-PA_36BIT_NAND P1010RDB-PA_36BIT_NOR P1010RDB-PA_36BIT_SDCARD P1010RDB-PA_36BIT_SPIFLASH P1010RDB-PA_NAND P1010RDB-PA_NOR P1010RDB-PA_SDCARD P1010RDB-PA_SPIFLASH P1010RDB-PB_36BIT_NAND P1010RDB-PB_36BIT_NOR P1010RDB-PB_36BIT_SDCARD P1010RDB-PB_36BIT_SPIFLASH P1010RDB-PB_NAND P1010RDB-PB_NOR P1010RDB-PB_SDCARD P1010RDB-PB_SPIFLASH P1020RDB-PC P1020RDB-PC_36BIT P1020RDB-PC_36BIT_NAND P1020RDB-PC_36BIT_SDCARD P1020RDB-PC_36BIT_SPIFLASH P1020RDB-PC_NAND P1020RDB-PC_SDCARD P1020RDB-PC_SPIFLASH P1020RDB-PD P1020RDB-PD_NAND P1020RDB-PD_SDCARD P1020RDB-PD_SPIFLASH P2020RDB-PC P2020RDB-PC_36BIT P2020RDB-PC_36BIT_NAND P2020RDB-PC_36BIT_SDCARD P2020RDB-PC_36BIT_SPIFLASH P2020RDB-PC_NAND P2020RDB-PC_SDCARD P2020RDB-PC_SPIFLASH P2041RDB P2041RDB_NAND P2041RDB_SDCARD P2041RDB_SPIFLASH T1024RDB_NAND T1024RDB_SDCARD T1024RDB_SPIFLASH T1042D4RDB_NAND T1042D4RDB_SDCARD T1042D4RDB_SPIFLASH T2080QDS T2080QDS_NAND T2080QDS_SDCARD T2080QDS_SECURE_BOOT T2080QDS_SPIFLASH T2080QDS_SRIO_PCIE_BOOT T2080RDB_NAND T2080RDB_revD_NAND T2080RDB_revD_SDCARD T2080RDB_revD_SPIFLASH T2080RDB_SDCARD T2080RDB_SPIFLASH T4240RDB_SDCARD xtfpga) for Serial drivers). Please update the board to use | |
+(ls1012afrdm_tfa ls1012afrwy_tfa ls1012afrwy_tfa_SECURE_BOOT ls1012aqds_tfa ls1012aqds_tfa_SECURE_BOOT ls1012a2g5rdb_tfa ls1012ardb_tfa ls1012ardb_tfa_SECURE_BOOT ls1043aqds_tfa ls1043aqds_tfa_SECURE_BOOT ls1046aqds_tfa ls1046aqds_tfa_SECURE_BOOT ls2080aqds_nand ls2080aqds_qspi ls2080ardb_nand librem5 SBx81LIFKW SBx81LIFXCAT dns325 d2net_v2 net2big_v2 inetspace_v2 netspace_lite_v2 netspace_max_v2 netspace_mini_v2 netspace_v2 guruplug openrd_base openrd_client openrd_ultimate ib62x0 nas220 ds109 am43xx_evm_qspiboot am43xx_hs_evm_qspi vinco ls1021aiot_qspi ls1021aiot_sdcard ls1021aqds_nand ls1021aqds_nor_SECURE_BOOT ls1021aqds_qspi ls1021aqds_sdcard_ifc ls1021aqds_sdcard_qspi ls1021atsn_qspi ls1021atsn_sdcard ls1021atwr_nor_SECURE_BOOT ls1021atwr_qspi ls1021atwr_sdcard_ifc ls1021atwr_sdcard_ifc_SECURE_BOOT ls1021atwr_sdcard_qspi mx6qsabrelite nitrogen6dl nitrogen6dl2g nitrogen6q nitrogen6q2g nitrogen6s nitrogen6s1g imx6dl_mamoj marsboard riotboard imx6ul_geam_mmc imx6ul_geam_nand imx6ul_isiot_emmc imx6ul_isiot_nand mx6memcal liteboard kontron-sl-mx6ul novena cl-som-imx7 imx7_cm omap4_panda omap4_sdp4430 MPC8548CDS MPC8548CDS_36BIT MPC8548CDS_legacy P1010RDB-PA_36BIT_NAND P1010RDB-PA_36BIT_NOR P1010RDB-PA_36BIT_SDCARD P1010RDB-PA_36BIT_SPIFLASH P1010RDB-PA_NAND P1010RDB-PA_NOR P1010RDB-PA_SDCARD P1010RDB-PA_SPIFLASH P1010RDB-PB_36BIT_NAND P1010RDB-PB_36BIT_NOR P1010RDB-PB_36BIT_SDCARD P1010RDB-PB_36BIT_SPIFLASH P1010RDB-PB_NAND P1010RDB-PB_NOR P1010RDB-PB_SDCARD P1010RDB-PB_SPIFLASH P1020RDB-PC P1020RDB-PC_36BIT P1020RDB-PC_36BIT_NAND P1020RDB-PC_36BIT_SDCARD P1020RDB-PC_36BIT_SPIFLASH P1020RDB-PC_NAND P1020RDB-PC_SDCARD P1020RDB-PC_SPIFLASH P1020RDB-PD P1020RDB-PD_NAND P1020RDB-PD_SDCARD P1020RDB-PD_SPIFLASH P2020RDB-PC P2020RDB-PC_36BIT P2020RDB-PC_36BIT_NAND P2020RDB-PC_36BIT_SDCARD P2020RDB-PC_36BIT_SPIFLASH P2020RDB-PC_NAND P2020RDB-PC_SDCARD P2020RDB-PC_SPIFLASH P2041RDB P2041RDB_NAND P2041RDB_SDCARD P2041RDB_SPIFLASH T1024RDB_NAND T1024RDB_SDCARD T1024RDB_SPIFLASH T1042D4RDB_NAND T1042D4RDB_SDCARD T1042D4RDB_SPIFLASH T2080QDS T2080QDS_NAND T2080QDS_SDCARD T2080QDS_SECURE_BOOT T2080QDS_SPIFLASH T2080QDS_SRIO_PCIE_BOOT T2080RDB_NAND T2080RDB_revD_NAND T2080RDB_revD_SDCARD T2080RDB_revD_SPIFLASH T2080RDB_SDCARD T2080RDB_SPIFLASH T4240RDB_SDCARD xtfpga) CONFIG_DM_SERIAL before the v2023.04 release. Failure to | |
+(ls1012afrdm_tfa ls1012afrwy_tfa ls1012afrwy_tfa_SECURE_BOOT ls1012aqds_tfa ls1012aqds_tfa_SECURE_BOOT ls1012a2g5rdb_tfa ls1012ardb_tfa ls1012ardb_tfa_SECURE_BOOT ls1043aqds_tfa ls1043aqds_tfa_SECURE_BOOT ls1046aqds_tfa ls1046aqds_tfa_SECURE_BOOT ls2080aqds_nand ls2080aqds_qspi ls2080ardb_nand librem5 ethernut5 SBx81LIFKW SBx81LIFXCAT dns325 d2net_v2 net2big_v2 inetspace_v2 netspace_lite_v2 netspace_max_v2 netspace_mini_v2 netspace_v2 guruplug openrd_base openrd_client openrd_ultimate ib62x0 nas220 ds109 devkit3250 work_92105 am335x_shc am335x_shc_ict am335x_shc_netboot am335x_shc_sdboot cm_t43 chiliboard am335x_igep003x pxm2 rut am335x_sl50 am43xx_evm_qspiboot am43xx_hs_evm_qspi vinco ls1021aiot_qspi ls1021aiot_sdcard ls1021aqds_nand ls1021aqds_nor_SECURE_BOOT ls1021aqds_qspi ls1021aqds_sdcard_ifc ls1021aqds_sdcard_qspi ls1021atsn_qspi ls1021atsn_sdcard ls1021atwr_nor_SECURE_BOOT ls1021atwr_qspi ls1021atwr_sdcard_ifc ls1021atwr_sdcard_ifc_SECURE_BOOT ls1021atwr_sdcard_qspi pg_wcom_expu1 pg_wcom_expu1_update pg_wcom_seli8 pg_wcom_seli8_update db-88f6720 db-88f6820-gp mx6qsabrelite nitrogen6dl nitrogen6dl2g nitrogen6q nitrogen6q2g nitrogen6s nitrogen6s1g imx6dl_mamoj cm_fx6 marsboard riotboard imx6qdl_icore_mmc imx6ul_geam_mmc imx6ul_geam_nand imx6ul_isiot_emmc imx6ul_isiot_nand mx6memcal liteboard kontron-sl-mx6ul novena vining_2000 cl-som-imx7 imx7_cm omap3_beagle igep00x0 sniper omap4_panda omap4_sdp4430 vf610twr vf610twr_nand MPC837XERDB MPC8548CDS MPC8548CDS_36BIT MPC8548CDS_legacy P1010RDB-PA_36BIT_NAND P1010RDB-PA_36BIT_NOR P1010RDB-PA_36BIT_SDCARD P1010RDB-PA_36BIT_SPIFLASH P1010RDB-PA_NAND P1010RDB-PA_NOR P1010RDB-PA_SDCARD P1010RDB-PA_SPIFLASH P1010RDB-PB_36BIT_NAND P1010RDB-PB_36BIT_NOR P1010RDB-PB_36BIT_SDCARD P1010RDB-PB_36BIT_SPIFLASH P1010RDB-PB_NAND P1010RDB-PB_NOR P1010RDB-PB_SDCARD P1010RDB-PB_SPIFLASH P1020RDB-PC P1020RDB-PC_36BIT P1020RDB-PC_36BIT_NAND P1020RDB-PC_36BIT_SDCARD P1020RDB-PC_36BIT_SPIFLASH P1020RDB-PC_NAND P1020RDB-PC_SDCARD P1020RDB-PC_SPIFLASH P1020RDB-PD P1020RDB-PD_NAND P1020RDB-PD_SDCARD P1020RDB-PD_SPIFLASH P2020RDB-PC P2020RDB-PC_36BIT P2020RDB-PC_36BIT_NAND P2020RDB-PC_36BIT_SDCARD P2020RDB-PC_36BIT_SPIFLASH P2020RDB-PC_NAND P2020RDB-PC_SDCARD P2020RDB-PC_SPIFLASH P2041RDB P2041RDB_NAND P2041RDB_SDCARD P2041RDB_SPIFLASH T1024RDB_NAND T1024RDB_SDCARD T1024RDB_SPIFLASH T1042D4RDB_NAND T1042D4RDB_SDCARD T1042D4RDB_SPIFLASH T2080QDS T2080QDS_NAND T2080QDS_SDCARD T2080QDS_SECURE_BOOT T2080QDS_SPIFLASH T2080QDS_SRIO_PCIE_BOOT T2080RDB_NAND T2080RDB_revD_NAND T2080RDB_revD_SDCARD T2080RDB_revD_SPIFLASH T2080RDB_SDCARD T2080RDB_SPIFLASH T4240RDB_SDCARD kmcent2 xtfpga) update by the deadline may result in board removal. | |
+(ls1012afrdm_tfa ls1012afrwy_tfa ls1012afrwy_tfa_SECURE_BOOT ls1012aqds_tfa ls1012aqds_tfa_SECURE_BOOT ls1012a2g5rdb_tfa ls1012ardb_tfa ls1012ardb_tfa_SECURE_BOOT ls1043aqds_tfa ls1043aqds_tfa_SECURE_BOOT ls1046aqds_tfa ls1046aqds_tfa_SECURE_BOOT ls2080aqds_nand ls2080aqds_qspi ls2080ardb_nand librem5 ethernut5 SBx81LIFKW SBx81LIFXCAT dns325 d2net_v2 net2big_v2 inetspace_v2 netspace_lite_v2 netspace_max_v2 netspace_mini_v2 netspace_v2 guruplug openrd_base openrd_client openrd_ultimate ib62x0 nas220 ds109 devkit3250 work_92105 am335x_shc am335x_shc_ict am335x_shc_netboot am335x_shc_sdboot cm_t43 chiliboard am335x_igep003x pxm2 rut am335x_sl50 am43xx_evm_qspiboot am43xx_hs_evm_qspi vinco ls1021aiot_qspi ls1021aiot_sdcard ls1021aqds_nand ls1021aqds_nor_SECURE_BOOT ls1021aqds_qspi ls1021aqds_sdcard_ifc ls1021aqds_sdcard_qspi ls1021atsn_qspi ls1021atsn_sdcard ls1021atwr_nor_SECURE_BOOT ls1021atwr_qspi ls1021atwr_sdcard_ifc ls1021atwr_sdcard_ifc_SECURE_BOOT ls1021atwr_sdcard_qspi pg_wcom_expu1 pg_wcom_expu1_update pg_wcom_seli8 pg_wcom_seli8_update db-88f6720 db-88f6820-gp mx6qsabrelite nitrogen6dl nitrogen6dl2g nitrogen6q nitrogen6q2g nitrogen6s nitrogen6s1g imx6dl_mamoj cm_fx6 marsboard riotboard imx6qdl_icore_mmc imx6ul_geam_mmc imx6ul_geam_nand imx6ul_isiot_emmc imx6ul_isiot_nand mx6memcal liteboard kontron-sl-mx6ul novena vining_2000 cl-som-imx7 imx7_cm omap3_beagle igep00x0 sniper omap4_panda omap4_sdp4430 vf610twr vf610twr_nand MPC837XERDB MPC8548CDS MPC8548CDS_36BIT MPC8548CDS_legacy P1010RDB-PA_36BIT_NAND P1010RDB-PA_36BIT_NOR P1010RDB-PA_36BIT_SDCARD P1010RDB-PA_36BIT_SPIFLASH P1010RDB-PA_NAND P1010RDB-PA_NOR P1010RDB-PA_SDCARD P1010RDB-PA_SPIFLASH P1010RDB-PB_36BIT_NAND P1010RDB-PB_36BIT_NOR P1010RDB-PB_36BIT_SDCARD P1010RDB-PB_36BIT_SPIFLASH P1010RDB-PB_NAND P1010RDB-PB_NOR P1010RDB-PB_SDCARD P1010RDB-PB_SPIFLASH P1020RDB-PC P1020RDB-PC_36BIT P1020RDB-PC_36BIT_NAND P1020RDB-PC_36BIT_SDCARD P1020RDB-PC_36BIT_SPIFLASH P1020RDB-PC_NAND P1020RDB-PC_SDCARD P1020RDB-PC_SPIFLASH P1020RDB-PD P1020RDB-PD_NAND P1020RDB-PD_SDCARD P1020RDB-PD_SPIFLASH P2020RDB-PC P2020RDB-PC_36BIT P2020RDB-PC_36BIT_NAND P2020RDB-PC_36BIT_SDCARD P2020RDB-PC_36BIT_SPIFLASH P2020RDB-PC_NAND P2020RDB-PC_SDCARD P2020RDB-PC_SPIFLASH P2041RDB P2041RDB_NAND P2041RDB_SDCARD P2041RDB_SPIFLASH T1024RDB_NAND T1024RDB_SDCARD T1024RDB_SPIFLASH T1042D4RDB_NAND T1042D4RDB_SDCARD T1042D4RDB_SPIFLASH T2080QDS T2080QDS_NAND T2080QDS_SDCARD T2080QDS_SECURE_BOOT T2080QDS_SPIFLASH T2080QDS_SRIO_PCIE_BOOT T2080RDB_NAND T2080RDB_revD_NAND T2080RDB_revD_SDCARD T2080RDB_revD_SPIFLASH T2080RDB_SDCARD T2080RDB_SPIFLASH T4240RDB_SDCARD kmcent2 xtfpga) See doc/develop/driver-model/migration.rst for more info. | |
+(ls2080aqds_nand ls2080aqds_qspi ls2080ardb_nand ethernut5 d2net_v2 net2big_v2 inetspace_v2 netspace_lite_v2 netspace_max_v2 netspace_mini_v2 netspace_v2 devkit3250 work_92105 am335x_shc am335x_shc_ict am335x_shc_netboot am335x_shc_sdboot cm_t43 chiliboard am335x_igep003x pxm2 rut am335x_sl50 pg_wcom_expu1 pg_wcom_expu1_update pg_wcom_seli8 pg_wcom_seli8_update db-88f6720 db-88f6820-gp mx6qsabrelite nitrogen6dl nitrogen6dl2g nitrogen6q nitrogen6q2g nitrogen6s nitrogen6s1g cm_fx6 marsboard riotboard novena vining_2000 cl-som-imx7 omap3_beagle igep00x0 sniper omap4_panda omap4_sdp4430 vf610twr vf610twr_nand MPC837XERDB) This board does not use CONFIG_DM_I2C (Driver Model | |
+(ls2080aqds_nand ls2080aqds_qspi ls2080ardb_nand ethernut5 d2net_v2 net2big_v2 inetspace_v2 netspace_lite_v2 netspace_max_v2 netspace_mini_v2 netspace_v2 devkit3250 work_92105 am335x_shc am335x_shc_ict am335x_shc_netboot am335x_shc_sdboot cm_t43 chiliboard am335x_igep003x pxm2 rut am335x_sl50 pg_wcom_expu1 pg_wcom_expu1_update pg_wcom_seli8 pg_wcom_seli8_update db-88f6720 db-88f6820-gp mx6qsabrelite nitrogen6dl nitrogen6dl2g nitrogen6q nitrogen6q2g nitrogen6s nitrogen6s1g cm_fx6 marsboard riotboard novena vining_2000 cl-som-imx7 omap3_beagle igep00x0 sniper omap4_panda omap4_sdp4430 vf610twr vf610twr_nand MPC837XERDB) for I2C drivers). Please update the board to use | |
+(ls2080aqds_nand ls2080aqds_qspi ls2080ardb_nand ethernut5 d2net_v2 net2big_v2 inetspace_v2 netspace_lite_v2 netspace_max_v2 netspace_mini_v2 netspace_v2 devkit3250 work_92105 am335x_shc am335x_shc_ict am335x_shc_netboot am335x_shc_sdboot cm_t43 chiliboard am335x_igep003x pxm2 rut am335x_sl50 pg_wcom_expu1 pg_wcom_expu1_update pg_wcom_seli8 pg_wcom_seli8_update db-88f6720 db-88f6820-gp mx6qsabrelite nitrogen6dl nitrogen6dl2g nitrogen6q nitrogen6q2g nitrogen6s nitrogen6s1g cm_fx6 marsboard riotboard novena vining_2000 cl-som-imx7 omap3_beagle igep00x0 sniper omap4_panda omap4_sdp4430 vf610twr vf610twr_nand MPC837XERDB) CONFIG_DM_I2C before the v2022.04 release. Failure to | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek apalis-imx8) WARNING 'mx8qm-ahab-container.img' not found, resulting binary is not-functional | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek imx8qxp_mek deneb giedi) Image 'itb' is missing external blobs and is non-functional: atf-blob scfw_blob seco_blob | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek imx8qxp_mek deneb giedi imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G imx8mm_beacon imx8mm_beacon_fspi imx8mn_beacon imx8mn_beacon_2g imx8mn_beacon_fspi imx8mp_beacon imx8mn_bsh_smm_s2 imx8mn_bsh_smm_s2pro imx8mm_phg imx8mm-cl-iot-gate imx8mm-cl-iot-gate-optee imx8mm_data_modul_edm_sbc imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mp-icore-mx8mp-edimm2.2 imx8mm_evk imx8mm_evk_fspi imx8mn_ddr4_evk imx8mn_evk imx8mp_evk imx8mq_evk imx8mm_venice imx8mn_venice imx8mp_venice imx8mq_phanbell kontron_pitx_imx8m kontron-sl-mx8mm imx8mm-mx8menlo imx8mq_reform2 msc_sm2s_imx8mp imx8mm-phygate-tauri-l phycore-imx8mm phycore-imx8mp imx8mp_debix_model_a librem5 imx8mq_cm pico-imx8mq verdin-imx8mm verdin-imx8mp imx8mn_var_som imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som j721e_beagleboneai64_a72 am62x_beagleplay_a53 phycore_am62x_a53 phycore_am64x_a53 iot2050 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53 px30-core-ctouch2-of10-px30 px30-core-ctouch2-px30 px30-core-edimm2.2-px30 odroid-go2 evb-px30 firefly-px30 ringneck-px30 roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 evb-rk3328 nanopi-r2c-plus-rk3328 nanopi-r2c-rk3328 nanopi-r2s-rk3328 orangepi-r1-plus-lts-rk3328 orangepi-r1-plus-rk3328 roc-cc-rk3328 rock-pi-e-rk3328 rock64-rk3328 evb-px5 lion-rk3368 roc-pc-mezzanine-rk3399 roc-pc-rk3399 chromebook_bob chromebook_kevin pinebook-pro-rk3399 pinephone-pro-rk3399 rockpro64-rk3399 rock-4c-plus-rk3399 rock-4se-rk3399 rock-pi-4-rk3399 rock-pi-4c-rk3399 eaidk-610-rk3399 evb-rk3399 firefly-rk3399 khadas-edge-captain-rk3399 khadas-edge-rk3399 khadas-edge-v-rk3399 leez-rk3399 nanopc-t4-rk3399 nanopi-m4-2gb-rk3399 nanopi-m4-rk3399 nanopi-m4b-rk3399 nanopi-neo4-rk3399 nanopi-r4s-rk3399 orangepi-rk3399 rock-pi-n10-rk3399pro puma-rk3399 ficus-rk3399 rock960-rk3399 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588 socfpga_stratix10_atf socfpga_agilex_atf socfpga_agilex_vab socfpga_agilex5 socfpga_n5x_atf socfpga_n5x_vab a64-olinuxino a64-olinuxino-emmc amarula_a64_relic bananapi_m2_plus_h5 bananapi_m64 beelink_gs1 emlid_neutis_n5_devboard libretech_all_h3_cc_h5 libretech_all_h3_it_h5 libretech_all_h5_cc_h5 nanopi_a64 nanopi_neo2 nanopi_neo_plus2 nanopi_r1s_h5 oceanic_5205_5inmfd orangepi_3 orangepi_lite2 orangepi_one_plus orangepi_pc2 orangepi_prime orangepi_win orangepi_zero2 orangepi_zero2w orangepi_zero3 orangepi_zero_plus orangepi_zero_plus2 pine64-lts pine64_plus pine_h64 pinebook pinephone pinetab sopine_baseboard tanix_tx6 teres_i transpeed-8k618-t x96_mate j721e_beagleboneai64_r5 am62x_beagleplay_r5 phycore_am62x_r5 phycore_am64x_r5 am62ax_evm_r5 am62px_evm_r5 am62x_evm_r5 am64x_evm_r5 am65x_evm_r5 am65x_evm_r5_usbdfu am65x_evm_r5_usbmsc j7200_evm_r5 j721e_evm_r5 j721e_sk_r5 am68_sk_r5 j721s2_evm_r5 am69_sk_r5 j784s4_evm_r5 verdin-am62_r5 evb-rk3229 evb-rk3288 sonoff-ihost-rv1126 mt7621_nand_rfb mt7621_rfb ae350_rv32_falcon ae350_rv32_falcon_xip ae350_rv32_spl ae350_rv32_spl_xip qemu-riscv32_spl xilinx_mbv32 xilinx_mbv32_smode ae350_rv64_falcon ae350_rv64_falcon_xip ae350_rv64_spl ae350_rv64_spl_xip sifive_unleashed sifive_unmatched qemu-riscv64_spl starfive_visionfive2 chromebook_coral som-db5800-som-6867 conga-qeval20-qa3-e3845 conga-qeval20-qa3-e3845-internal-uart theadorable-x86-conga-qa3-e3845 theadorable-x86-conga-qa3-e3845-pcie-x4 dfi-bt700-q7x-151 theadorable-x86-dfi-bt700 bayleybay minnowmax cherryhill chromebook_samus chromebook_samus_tpl chromebook_link chromebook_link64 chromebox_panther cougarcanyon2 galileo crownbay) | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek imx8qxp_mek deneb giedi) /binman/itb/fit/images/atf/atf-blob (bl31.bin): | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek imx8qxp_mek deneb giedi imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G imx8mm_beacon imx8mm_beacon_fspi imx8mn_beacon imx8mn_beacon_2g imx8mn_beacon_fspi imx8mp_beacon imx8mn_bsh_smm_s2 imx8mn_bsh_smm_s2pro imx8mm_phg imx8mm-cl-iot-gate imx8mm-cl-iot-gate-optee imx8mm_data_modul_edm_sbc imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mp-icore-mx8mp-edimm2.2 imx8mm_evk imx8mm_evk_fspi imx8mn_ddr4_evk imx8mn_evk imx8mp_evk imx8mm_venice imx8mn_venice imx8mp_venice kontron-sl-mx8mm imx8mm-mx8menlo msc_sm2s_imx8mp imx8mm-phygate-tauri-l phycore-imx8mm phycore-imx8mp imx8mp_debix_model_a verdin-imx8mm verdin-imx8mp imx8mn_var_som j721e_beagleboneai64_a72 am62x_beagleplay_a53 phycore_am62x_a53 phycore_am64x_a53 iot2050 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53 px30-core-ctouch2-of10-px30 px30-core-ctouch2-px30 px30-core-edimm2.2-px30 odroid-go2 evb-px30 firefly-px30 ringneck-px30 roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 evb-rk3328 nanopi-r2c-plus-rk3328 nanopi-r2c-rk3328 nanopi-r2s-rk3328 orangepi-r1-plus-lts-rk3328 orangepi-r1-plus-rk3328 roc-cc-rk3328 rock-pi-e-rk3328 rock64-rk3328 evb-px5 lion-rk3368 roc-pc-mezzanine-rk3399 roc-pc-rk3399 chromebook_bob chromebook_kevin pinebook-pro-rk3399 pinephone-pro-rk3399 rockpro64-rk3399 rock-4c-plus-rk3399 rock-4se-rk3399 rock-pi-4-rk3399 rock-pi-4c-rk3399 eaidk-610-rk3399 evb-rk3399 firefly-rk3399 khadas-edge-captain-rk3399 khadas-edge-rk3399 khadas-edge-v-rk3399 leez-rk3399 nanopc-t4-rk3399 nanopi-m4-2gb-rk3399 nanopi-m4-rk3399 nanopi-m4b-rk3399 nanopi-neo4-rk3399 nanopi-r4s-rk3399 orangepi-rk3399 rock-pi-n10-rk3399pro puma-rk3399 ficus-rk3399 rock960-rk3399 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588) See the documentation for your board. You may need to build ARM Trusted | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek imx8qxp_mek deneb giedi imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G imx8mm_beacon imx8mm_beacon_fspi imx8mn_beacon imx8mn_beacon_2g imx8mn_beacon_fspi imx8mp_beacon imx8mn_bsh_smm_s2 imx8mn_bsh_smm_s2pro imx8mm_phg imx8mm-cl-iot-gate imx8mm-cl-iot-gate-optee imx8mm_data_modul_edm_sbc imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mp-icore-mx8mp-edimm2.2 imx8mm_evk imx8mm_evk_fspi imx8mn_ddr4_evk imx8mn_evk imx8mp_evk imx8mm_venice imx8mn_venice imx8mp_venice kontron-sl-mx8mm imx8mm-mx8menlo msc_sm2s_imx8mp imx8mm-phygate-tauri-l phycore-imx8mm phycore-imx8mp imx8mp_debix_model_a verdin-imx8mm verdin-imx8mp imx8mn_var_som j721e_beagleboneai64_a72 am62x_beagleplay_a53 phycore_am62x_a53 phycore_am64x_a53 iot2050 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53 px30-core-ctouch2-of10-px30 px30-core-ctouch2-px30 px30-core-edimm2.2-px30 odroid-go2 evb-px30 firefly-px30 ringneck-px30 roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 evb-rk3328 nanopi-r2c-plus-rk3328 nanopi-r2c-rk3328 nanopi-r2s-rk3328 orangepi-r1-plus-lts-rk3328 orangepi-r1-plus-rk3328 roc-cc-rk3328 rock-pi-e-rk3328 rock64-rk3328 evb-px5 lion-rk3368 roc-pc-mezzanine-rk3399 roc-pc-rk3399 chromebook_bob chromebook_kevin pinebook-pro-rk3399 pinephone-pro-rk3399 rockpro64-rk3399 rock-4c-plus-rk3399 rock-4se-rk3399 rock-pi-4-rk3399 rock-pi-4c-rk3399 eaidk-610-rk3399 evb-rk3399 firefly-rk3399 khadas-edge-captain-rk3399 khadas-edge-rk3399 khadas-edge-v-rk3399 leez-rk3399 nanopc-t4-rk3399 nanopi-m4-2gb-rk3399 nanopi-m4-rk3399 nanopi-m4b-rk3399 nanopi-neo4-rk3399 nanopi-r4s-rk3399 orangepi-rk3399 rock-pi-n10-rk3399pro puma-rk3399 ficus-rk3399 rock960-rk3399 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588) Firmware and build with BL31=/path/to/bl31.bin | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek) /binman/itb/fit/images/scfw/scfw_blob (mx8qm-val-scfw-tcm.bin): | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek imx8qxp_mek deneb giedi imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G imx8mm_beacon imx8mm_beacon_fspi imx8mn_beacon imx8mn_beacon_2g imx8mn_beacon_fspi imx8mp_beacon imx8mn_bsh_smm_s2 imx8mn_bsh_smm_s2pro imx8mm_phg imx8mm-cl-iot-gate imx8mm-cl-iot-gate-optee imx8mm_data_modul_edm_sbc imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mp-icore-mx8mp-edimm2.2 imx8mm_evk imx8mm_evk_fspi imx8mn_ddr4_evk imx8mn_evk imx8mp_evk imx8mq_evk imx8mm_venice imx8mn_venice imx8mp_venice imx8mq_phanbell kontron_pitx_imx8m kontron-sl-mx8mm imx8mm-mx8menlo imx8mq_reform2 msc_sm2s_imx8mp imx8mm-phygate-tauri-l phycore-imx8mm phycore-imx8mp imx8mp_debix_model_a librem5 imx8mq_cm pico-imx8mq verdin-imx8mm verdin-imx8mp imx8mn_var_som imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som j721e_beagleboneai64_a72 am62x_beagleplay_a53 phycore_am62x_a53 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53 socfpga_stratix10_atf socfpga_agilex_atf socfpga_agilex_vab socfpga_agilex5 socfpga_n5x_atf socfpga_n5x_vab j721e_beagleboneai64_r5 am62x_beagleplay_r5 phycore_am62x_r5 phycore_am64x_r5 am62ax_evm_r5 am62px_evm_r5 am62x_evm_r5 am64x_evm_r5 am65x_evm_r5 am65x_evm_r5_usbdfu am65x_evm_r5_usbmsc j7200_evm_r5 j721e_evm_r5 j721e_sk_r5 am68_sk_r5 j721s2_evm_r5 am69_sk_r5 j784s4_evm_r5 verdin-am62_r5 mt7621_nand_rfb mt7621_rfb ae350_rv32_falcon ae350_rv32_falcon_xip ae350_rv64_falcon ae350_rv64_falcon_xip chromebook_coral som-db5800-som-6867 conga-qeval20-qa3-e3845 conga-qeval20-qa3-e3845-internal-uart theadorable-x86-conga-qa3-e3845 theadorable-x86-conga-qa3-e3845-pcie-x4 dfi-bt700-q7x-151 theadorable-x86-dfi-bt700 bayleybay minnowmax cherryhill chromebook_samus chromebook_samus_tpl chromebook_link chromebook_link64 chromebox_panther cougarcanyon2 galileo crownbay) Missing blob | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek) /binman/itb/fit/images/seco/seco_blob (mx8qm-ahab-container.img): | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek imx8qxp_mek deneb giedi) Image 'imx-boot' is missing external blobs and is non-functional: spl | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek imx8qxp_mek deneb giedi) /binman/imx-boot/spl (spl.bin): | |
+(imx8qm_dmsse20a1 imx8qm_rom7720_a1_4G cgtqmx8 imx8qm_mek imx8qxp_mek deneb giedi imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G imx8mm_beacon imx8mm_beacon_fspi imx8mn_beacon imx8mn_beacon_2g imx8mn_beacon_fspi imx8mp_beacon imx8mn_bsh_smm_s2 imx8mn_bsh_smm_s2pro imx8mm_phg imx8mm-cl-iot-gate imx8mm-cl-iot-gate-optee imx8mm_data_modul_edm_sbc imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mp-icore-mx8mp-edimm2.2 imx8mm_evk imx8mm_evk_fspi imx8mn_ddr4_evk imx8mn_evk imx8mp_evk imx8mq_evk imx8mm_venice imx8mn_venice imx8mp_venice imx8mq_phanbell kontron_pitx_imx8m kontron-sl-mx8mm imx8mm-mx8menlo imx8mq_reform2 msc_sm2s_imx8mp imx8mm-phygate-tauri-l phycore-imx8mm phycore-imx8mp imx8mp_debix_model_a librem5 imx8mq_cm pico-imx8mq verdin-imx8mm verdin-imx8mp imx8mn_var_som imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som j721e_beagleboneai64_a72 am62x_beagleplay_a53 phycore_am62x_a53 phycore_am64x_a53 iot2050 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53 px30-core-ctouch2-of10-px30 px30-core-ctouch2-px30 px30-core-edimm2.2-px30 odroid-go2 evb-px30 firefly-px30 ringneck-px30 roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 evb-rk3328 nanopi-r2c-plus-rk3328 nanopi-r2c-rk3328 nanopi-r2s-rk3328 orangepi-r1-plus-lts-rk3328 orangepi-r1-plus-rk3328 roc-cc-rk3328 rock-pi-e-rk3328 rock64-rk3328 evb-px5 lion-rk3368 roc-pc-mezzanine-rk3399 roc-pc-rk3399 chromebook_bob chromebook_kevin pinebook-pro-rk3399 pinephone-pro-rk3399 rockpro64-rk3399 rock-4c-plus-rk3399 rock-4se-rk3399 rock-pi-4-rk3399 rock-pi-4c-rk3399 eaidk-610-rk3399 evb-rk3399 firefly-rk3399 khadas-edge-captain-rk3399 khadas-edge-rk3399 khadas-edge-v-rk3399 leez-rk3399 nanopc-t4-rk3399 nanopi-m4-2gb-rk3399 nanopi-m4-rk3399 nanopi-m4b-rk3399 nanopi-neo4-rk3399 nanopi-r4s-rk3399 orangepi-rk3399 rock-pi-n10-rk3399pro puma-rk3399 ficus-rk3399 rock960-rk3399 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588 socfpga_stratix10_atf socfpga_agilex_atf socfpga_agilex_vab socfpga_agilex5 socfpga_n5x_atf socfpga_n5x_vab a64-olinuxino a64-olinuxino-emmc amarula_a64_relic bananapi_m2_plus_h5 bananapi_m64 beelink_gs1 emlid_neutis_n5_devboard libretech_all_h3_cc_h5 libretech_all_h3_it_h5 libretech_all_h5_cc_h5 nanopi_a64 nanopi_neo2 nanopi_neo_plus2 nanopi_r1s_h5 oceanic_5205_5inmfd orangepi_3 orangepi_lite2 orangepi_one_plus orangepi_pc2 orangepi_prime orangepi_win orangepi_zero2 orangepi_zero2w orangepi_zero3 orangepi_zero_plus orangepi_zero_plus2 pine64-lts pine64_plus pine_h64 pinebook pinephone pinetab sopine_baseboard tanix_tx6 teres_i transpeed-8k618-t x96_mate evb-rk3229 evb-rk3288 sonoff-ihost-rv1126 mt7621_nand_rfb mt7621_rfb ae350_rv32_falcon ae350_rv32_falcon_xip ae350_rv32_spl ae350_rv32_spl_xip qemu-riscv32_spl xilinx_mbv32 xilinx_mbv32_smode ae350_rv64_falcon ae350_rv64_falcon_xip ae350_rv64_spl ae350_rv64_spl_xip sifive_unleashed sifive_unmatched qemu-riscv64_spl starfive_visionfive2 chromebook_coral som-db5800-som-6867 conga-qeval20-qa3-e3845 conga-qeval20-qa3-e3845-internal-uart theadorable-x86-conga-qa3-e3845 theadorable-x86-conga-qa3-e3845-pcie-x4 dfi-bt700-q7x-151 theadorable-x86-dfi-bt700 bayleybay minnowmax cherryhill chromebook_samus chromebook_samus_tpl chromebook_link chromebook_link64 chromebox_panther cougarcanyon2 galileo crownbay) Some images are invalid | |
+(imx8qxp_mek deneb giedi) WARNING 'ahab-container.img' not found, resulting binary is not-functional | |
+(imx8qxp_mek deneb giedi) /binman/itb/fit/images/scfw/scfw_blob (mx8qx-mek-scfw-tcm.bin): | |
+(imx8qxp_mek deneb giedi) /binman/itb/fit/images/seco/seco_blob (mx8qxc0-ahab-container.img): | |
+(colibri-imx8x) WARNING 'mx8qx-ahab-container.img' not found, resulting binary is not-functional | |
+(imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G) Image 'image' is missing external blobs and is non-functional: ddr-1d-imem-fw ddr-1d-dmem-fw ddr-2d-imem-fw ddr-2d-dmem-fw atf-blob blob-ext | |
+(imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G imx8mp_beacon imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mp-icore-mx8mp-edimm2.2 imx8mp_evk imx8mp_venice msc_sm2s_imx8mp phycore-imx8mp imx8mp_debix_model_a verdin-imx8mp) /binman/section/nxp-imx8mimage/section/ddr-1d-imem-fw (lpddr4_pmu_train_1d_imem_202006.bin): | |
+(imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G imx8mp_beacon imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mp-icore-mx8mp-edimm2.2 imx8mp_evk imx8mp_venice msc_sm2s_imx8mp phycore-imx8mp imx8mp_debix_model_a verdin-imx8mp) /binman/section/nxp-imx8mimage/section/ddr-1d-dmem-fw (lpddr4_pmu_train_1d_dmem_202006.bin): | |
+(imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G imx8mp_beacon imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mp-icore-mx8mp-edimm2.2 imx8mp_evk imx8mp_venice msc_sm2s_imx8mp phycore-imx8mp imx8mp_debix_model_a verdin-imx8mp) /binman/section/nxp-imx8mimage/section/ddr-2d-imem-fw (lpddr4_pmu_train_2d_imem_202006.bin): | |
+(imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G imx8mp_beacon imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mp-icore-mx8mp-edimm2.2 imx8mp_evk imx8mp_venice msc_sm2s_imx8mp phycore-imx8mp imx8mp_debix_model_a verdin-imx8mp) /binman/section/nxp-imx8mimage/section/ddr-2d-dmem-fw (lpddr4_pmu_train_2d_dmem_202006.bin): | |
+(imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G imx8mm_beacon imx8mm_beacon_fspi imx8mn_beacon imx8mn_beacon_2g imx8mn_beacon_fspi imx8mp_beacon imx8mn_bsh_smm_s2 imx8mn_bsh_smm_s2pro imx8mm_phg imx8mm-cl-iot-gate imx8mm-cl-iot-gate-optee imx8mm_data_modul_edm_sbc imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mp-icore-mx8mp-edimm2.2 imx8mm_evk imx8mm_evk_fspi imx8mn_ddr4_evk imx8mn_evk imx8mp_evk imx8mq_evk imx8mm_venice imx8mn_venice imx8mp_venice imx8mq_phanbell kontron_pitx_imx8m kontron-sl-mx8mm imx8mm-mx8menlo imx8mq_reform2 msc_sm2s_imx8mp imx8mm-phygate-tauri-l phycore-imx8mm phycore-imx8mp imx8mp_debix_model_a librem5 imx8mq_cm pico-imx8mq verdin-imx8mm verdin-imx8mp imx8mn_var_som) /binman/section/fit/images/atf/atf-blob (bl31.bin): | |
+(imx8mp_rsb3720a1_4G imx8mp_rsb3720a1_6G) /binman/section/fit/images/fip/blob-ext (fip.bin): | |
+(imx8mm_beacon imx8mn_beacon imx8mn_beacon_2g imx8mp_beacon imx8mm_phg imx8mm-cl-iot-gate imx8mm_data_modul_edm_sbc imx8mp_data_modul_edm_sbc imx8mp_dhcom_pdk2 imx8mp_dhcom_pdk3 imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mp-icore-mx8mp-edimm2.2 imx8mm_evk imx8mn_ddr4_evk imx8mn_evk imx8mp_evk imx8mm_venice imx8mn_venice imx8mp_venice kontron-sl-mx8mm imx8mm-mx8menlo msc_sm2s_imx8mp imx8mm-phygate-tauri-l phycore-imx8mm phycore-imx8mp imx8mp_debix_model_a verdin-imx8mm verdin-imx8mp imx8mn_var_som) Image 'image' is missing external blobs and is non-functional: ddr-1d-imem-fw ddr-1d-dmem-fw ddr-2d-imem-fw ddr-2d-dmem-fw atf-blob | |
+(imx8mm_beacon imx8mm_beacon_fspi imx8mn_beacon imx8mn_beacon_2g imx8mn_beacon_fspi imx8mm_phg imx8mm-cl-iot-gate imx8mm-cl-iot-gate-optee imx8mm_data_modul_edm_sbc imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mm_evk imx8mm_evk_fspi imx8mn_evk imx8mq_evk imx8mm_venice imx8mn_venice imx8mq_phanbell kontron_pitx_imx8m kontron-sl-mx8mm imx8mm-mx8menlo imx8mq_reform2 imx8mm-phygate-tauri-l phycore-imx8mm librem5 imx8mq_cm pico-imx8mq verdin-imx8mm) /binman/section/nxp-imx8mimage/section/ddr-1d-imem-fw (lpddr4_pmu_train_1d_imem.bin): | |
+(imx8mm_beacon imx8mm_beacon_fspi imx8mn_beacon imx8mn_beacon_2g imx8mn_beacon_fspi imx8mm_phg imx8mm-cl-iot-gate imx8mm-cl-iot-gate-optee imx8mm_data_modul_edm_sbc imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mm_evk imx8mm_evk_fspi imx8mn_evk imx8mq_evk imx8mm_venice imx8mn_venice imx8mq_phanbell kontron_pitx_imx8m kontron-sl-mx8mm imx8mm-mx8menlo imx8mq_reform2 imx8mm-phygate-tauri-l phycore-imx8mm librem5 imx8mq_cm pico-imx8mq verdin-imx8mm) /binman/section/nxp-imx8mimage/section/ddr-1d-dmem-fw (lpddr4_pmu_train_1d_dmem.bin): | |
+(imx8mm_beacon imx8mm_beacon_fspi imx8mn_beacon imx8mn_beacon_2g imx8mn_beacon_fspi imx8mm_phg imx8mm-cl-iot-gate imx8mm-cl-iot-gate-optee imx8mm_data_modul_edm_sbc imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mm_evk imx8mm_evk_fspi imx8mn_evk imx8mq_evk imx8mm_venice imx8mn_venice imx8mq_phanbell kontron_pitx_imx8m kontron-sl-mx8mm imx8mm-mx8menlo imx8mq_reform2 imx8mm-phygate-tauri-l phycore-imx8mm librem5 imx8mq_cm pico-imx8mq verdin-imx8mm) /binman/section/nxp-imx8mimage/section/ddr-2d-imem-fw (lpddr4_pmu_train_2d_imem.bin): | |
+(imx8mm_beacon imx8mm_beacon_fspi imx8mn_beacon imx8mn_beacon_2g imx8mn_beacon_fspi imx8mm_phg imx8mm-cl-iot-gate imx8mm-cl-iot-gate-optee imx8mm_data_modul_edm_sbc imx8mm-icore-mx8mm-ctouch2 imx8mm-icore-mx8mm-edimm2.2 imx8mm_evk imx8mm_evk_fspi imx8mn_evk imx8mq_evk imx8mm_venice imx8mn_venice imx8mq_phanbell kontron_pitx_imx8m kontron-sl-mx8mm imx8mm-mx8menlo imx8mq_reform2 imx8mm-phygate-tauri-l phycore-imx8mm librem5 imx8mq_cm pico-imx8mq verdin-imx8mm) /binman/section/nxp-imx8mimage/section/ddr-2d-dmem-fw (lpddr4_pmu_train_2d_dmem.bin): | |
+(imx8mm_beacon_fspi imx8mn_beacon_fspi imx8mm_evk_fspi) Image 'image' is missing external blobs and is non-functional: fspi_conf_block ddr-1d-imem-fw ddr-1d-dmem-fw ddr-2d-imem-fw ddr-2d-dmem-fw atf-blob | |
+(imx8mm_beacon_fspi imx8mn_beacon_fspi imx8mm_evk_fspi) /binman/section/fspi_conf_block (fspi_header.bin): | |
+(imx8mn_bsh_smm_s2 imx8mn_bsh_smm_s2pro) Image 'image' is missing external blobs and is non-functional: ddr-1d-imem-fw ddr-1d-dmem-fw atf-blob | |
+(imx8mn_bsh_smm_s2 imx8mn_bsh_smm_s2pro) /binman/section/nxp-imx8mimage/section/ddr-1d-imem-fw (ddr3_imem_1d.bin): | |
+(imx8mn_bsh_smm_s2 imx8mn_bsh_smm_s2pro) /binman/section/nxp-imx8mimage/section/ddr-1d-dmem-fw (ddr3_dmem_1d.bin): | |
+(imx8mm-cl-iot-gate-optee) Image 'image' is missing external blobs and is non-functional: ddr-1d-imem-fw ddr-1d-dmem-fw ddr-2d-imem-fw ddr-2d-dmem-fw atf-blob fip_blob | |
+(imx8mm-cl-iot-gate-optee) /binman/section/fit/images/fip/fip_blob (fip.bin): | |
+(imx8mn_ddr4_evk imx8mn_var_som) /binman/section/nxp-imx8mimage/section/ddr-1d-imem-fw (ddr4_imem_1d_201810.bin): | |
+(imx8mn_ddr4_evk imx8mn_var_som) /binman/section/nxp-imx8mimage/section/ddr-1d-dmem-fw (ddr4_dmem_1d_201810.bin): | |
+(imx8mn_ddr4_evk imx8mn_var_som) /binman/section/nxp-imx8mimage/section/ddr-2d-imem-fw (ddr4_imem_2d_201810.bin): | |
+(imx8mn_ddr4_evk imx8mn_var_som) /binman/section/nxp-imx8mimage/section/ddr-2d-dmem-fw (ddr4_dmem_2d_201810.bin): | |
+(imx8mq_evk imx8mq_phanbell kontron_pitx_imx8m imx8mq_reform2 librem5 imx8mq_cm pico-imx8mq) Image 'image' is missing external blobs and is non-functional: ddr-1d-imem-fw ddr-1d-dmem-fw ddr-2d-imem-fw ddr-2d-dmem-fw signed-hdmi-imx8m atf-blob | |
+(imx8mq_evk imx8mq_phanbell kontron_pitx_imx8m imx8mq_reform2 imx8mq_cm pico-imx8mq) /binman/section/nxp-imx8mimage/section/signed-hdmi-imx8m (signed_hdmi_imx8m.bin): | |
+(librem5) /binman/section/nxp-imx8mimage/section/signed-hdmi-imx8m (signed_dp_imx8m.bin): | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) WARNING 'mx93a1-ahab-container.img' not found, resulting binary may be not-functional | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) WARNING 'bl31.bin' not found, resulting binary may be not-functional | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) WARNING 'u-boot.bin' not found, resulting binary may be not-functional | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) WARNING 'tee.bin' not found, resulting binary may be not-functional | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) Image 'u-boot-spl-ddr' is missing external blobs and is non-functional: ddr-1d-imem-fw ddr-1d-dmem-fw ddr-2d-imem-fw ddr-2d-dmem-fw | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) /binman/u-boot-spl-ddr/ddr-1d-imem-fw (lpddr4_imem_1d_v202201.bin): | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) /binman/u-boot-spl-ddr/ddr-1d-dmem-fw (lpddr4_dmem_1d_v202201.bin): | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) /binman/u-boot-spl-ddr/ddr-2d-imem-fw (lpddr4_imem_2d_v202201.bin): | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) /binman/u-boot-spl-ddr/ddr-2d-dmem-fw (lpddr4_dmem_2d_v202201.bin): | |
+(j721e_beagleboneai64_a72 am62x_beagleplay_a53 phycore_am62x_a53 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53) Image 'ti-dm' is missing external blobs and is non-functional: blob-ext | |
+(j721e_beagleboneai64_a72 j721e_evm_a72 j721e_sk_a72) /binman/ti-dm/blob-ext (ti-dm/j721e/ipc_echo_testb_mcu1_0_release_strip.xer5f): | |
+(j721e_beagleboneai64_a72 am62x_beagleplay_a53) Image 'ti-spl_unsigned' is missing external blobs and is non-functional: atf-bl31 tee-os | |
+(j721e_beagleboneai64_a72 am62x_beagleplay_a53 phycore_am62x_a53 phycore_am64x_a53 am62ax_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53) /binman/ti-spl_unsigned/fit/images/atf/atf-bl31 (bl31.bin): | |
+(j721e_beagleboneai64_a72 am62x_beagleplay_a53 phycore_am62x_a53 phycore_am64x_a53 am62ax_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53) /binman/ti-spl_unsigned/fit/images/tee/tee-os (tee-raw.bin): | |
+(j721e_beagleboneai64_a72 am62x_beagleplay_a53 phycore_am62x_a53 phycore_am64x_a53 iot2050 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53 px30-core-ctouch2-of10-px30 px30-core-ctouch2-px30 px30-core-edimm2.2-px30 odroid-go2 evb-px30 firefly-px30 ringneck-px30 roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 evb-rk3328 nanopi-r2c-plus-rk3328 nanopi-r2c-rk3328 nanopi-r2s-rk3328 orangepi-r1-plus-lts-rk3328 orangepi-r1-plus-rk3328 roc-cc-rk3328 rock-pi-e-rk3328 rock64-rk3328 evb-px5 lion-rk3368 roc-pc-mezzanine-rk3399 roc-pc-rk3399 chromebook_bob chromebook_kevin pinebook-pro-rk3399 pinephone-pro-rk3399 rockpro64-rk3399 rock-4c-plus-rk3399 rock-4se-rk3399 rock-pi-4-rk3399 rock-pi-4c-rk3399 eaidk-610-rk3399 evb-rk3399 firefly-rk3399 khadas-edge-captain-rk3399 khadas-edge-rk3399 khadas-edge-v-rk3399 leez-rk3399 nanopc-t4-rk3399 nanopi-m4-2gb-rk3399 nanopi-m4-rk3399 nanopi-m4b-rk3399 nanopi-neo4-rk3399 nanopi-r4s-rk3399 orangepi-rk3399 rock-pi-n10-rk3399pro puma-rk3399 ficus-rk3399 rock960-rk3399 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588 evb-rk3229 evb-rk3288 sonoff-ihost-rv1126) See the documentation for your board. You may need to build Open Portable | |
+(j721e_beagleboneai64_a72 am62x_beagleplay_a53 phycore_am62x_a53 phycore_am64x_a53 iot2050 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53 px30-core-ctouch2-of10-px30 px30-core-ctouch2-px30 px30-core-edimm2.2-px30 odroid-go2 evb-px30 firefly-px30 ringneck-px30 roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 evb-rk3328 nanopi-r2c-plus-rk3328 nanopi-r2c-rk3328 nanopi-r2s-rk3328 orangepi-r1-plus-lts-rk3328 orangepi-r1-plus-rk3328 roc-cc-rk3328 rock-pi-e-rk3328 rock64-rk3328 evb-px5 lion-rk3368 roc-pc-mezzanine-rk3399 roc-pc-rk3399 chromebook_bob chromebook_kevin pinebook-pro-rk3399 pinephone-pro-rk3399 rockpro64-rk3399 rock-4c-plus-rk3399 rock-4se-rk3399 rock-pi-4-rk3399 rock-pi-4c-rk3399 eaidk-610-rk3399 evb-rk3399 firefly-rk3399 khadas-edge-captain-rk3399 khadas-edge-rk3399 khadas-edge-v-rk3399 leez-rk3399 nanopc-t4-rk3399 nanopi-m4-2gb-rk3399 nanopi-m4-rk3399 nanopi-m4b-rk3399 nanopi-neo4-rk3399 nanopi-r4s-rk3399 orangepi-rk3399 rock-pi-n10-rk3399pro puma-rk3399 ficus-rk3399 rock960-rk3399 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588 evb-rk3229 evb-rk3288 sonoff-ihost-rv1126) Trusted Execution Environment (OP-TEE) and build with TEE=/path/to/tee.bin | |
+(am62x_beagleplay_a53 phycore_am62x_a53 am62x_evm_a53 verdin-am62_a53) /binman/ti-dm/blob-ext (ti-dm/am62xx/ipc_echo_testb_mcu1_0_release_strip.xer5f): | |
+(phycore_am62x_a53 phycore_am64x_a53 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53) Image 'ti-spl' is missing external blobs and is non-functional: atf-bl31 | |
+(phycore_am62x_a53 phycore_am64x_a53 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53) /binman/ti-spl/fit/images/atf/atf-bl31 (atf-bl31): | |
+(phycore_am62x_a53 phycore_am64x_a53 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53) Image 'ti-spl' is missing optional external blobs but is still functional: tee-os | |
+(phycore_am62x_a53 phycore_am64x_a53 am62ax_evm_a53 am62px_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53) /binman/ti-spl/fit/images/tee/tee-os (tee-os): | |
+(phycore_am62x_a53 phycore_am64x_a53 am62ax_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53) Image 'ti-spl_unsigned' is missing external blobs and is non-functional: atf-bl31 | |
+(phycore_am62x_a53 phycore_am64x_a53 am62ax_evm_a53 am62x_evm_a53 am64x_evm_a53 am65x_evm_a53 j7200_evm_a72 j721e_evm_a72 j721e_sk_a72 am68_sk_a72 j721s2_evm_a72 am69_sk_a72 j784s4_evm_a72 verdin-am62_a53) Image 'ti-spl_unsigned' is missing optional external blobs but is still functional: tee-os | |
+(iot2050) Image 'flash-pg1' is missing external blobs and is non-functional: blob-ext@0 atf-bl31 tee-os blob-ext | |
+(iot2050) /binman/flash-pg1/blob-ext@0 (seboot_pg1.bin): | |
+(iot2050) See the documentation for IOT2050 board. Your image is missing SEBoot | |
+(iot2050) which is mandatory for board startup. Prebuilt SEBoot located at | |
+(iot2050) meta-iot2050/tree/master/recipes-bsp/u-boot/files/prebuild/seboot_pg*.bin. | |
+(iot2050) /binman/flash-pg1/fit@180000/images/atf/atf-bl31 (atf-bl31): | |
+(iot2050) /binman/flash-pg1/fit@180000/images/tee/tee-os (tee-os): | |
+(iot2050) /binman/flash-pg1/fit@380000/images/k3-rti-wdt-firmware/blob-ext (k3-rti-wdt.fw): | |
+(iot2050) If CONFIG_WDT_K3_RTI_LOAD_FW is enabled, a firmware image is needed for | |
+(iot2050) the R5F core(s) to trigger the system reset. One possible source is | |
+(iot2050) https://github.com/siemens/k3-rti-wdt. | |
+(iot2050) Image 'flash-pg2' is missing external blobs and is non-functional: blob-ext@0 atf-bl31 tee-os blob-ext | |
+(iot2050) /binman/flash-pg2/blob-ext@0 (seboot_pg2.bin): | |
+(iot2050) /binman/flash-pg2/fit@180000/images/atf/atf-bl31 (atf-bl31): | |
+(iot2050) /binman/flash-pg2/fit@180000/images/tee/tee-os (tee-os): | |
+(iot2050) /binman/flash-pg2/fit@380000/images/k3-rti-wdt-firmware/blob-ext (k3-rti-wdt.fw): | |
+(am62ax_evm_a53) /binman/ti-dm/blob-ext (ti-dm/am62axx/ipc_echo_testb_mcu1_0_release_strip.xer5f): | |
+(am62px_evm_a53) /binman/ti-dm/blob-ext (ti-dm/am62pxx/ipc_echo_testb_mcu1_0_release_strip.xer5f): | |
+(am62x_evm_a53 verdin-am62_a53) Image 'tifsstub-hs' is missing optional external blobs but is still functional: tifsstub-hs-cert.bin tifsstub-hs-enc.bin | |
+(am62x_evm_a53 verdin-am62_a53) /binman/tifsstub-hs/tifsstub-hs-cert.bin (ti-sysfw/ti-fs-stub-firmware-am62x-hs-cert.bin): | |
+(am62x_evm_a53 verdin-am62_a53) /binman/tifsstub-hs/tifsstub-hs-enc.bin (ti-sysfw/ti-fs-stub-firmware-am62x-hs-enc.bin): | |
+(am62x_evm_a53 verdin-am62_a53) Image 'tifsstub-fs' is missing optional external blobs but is still functional: tifsstub-fs-cert.bin tifsstub-fs-enc.bin | |
+(am62x_evm_a53 verdin-am62_a53) /binman/tifsstub-fs/tifsstub-fs-cert.bin (ti-sysfw/ti-fs-stub-firmware-am62x-hs-cert.bin): | |
+(am62x_evm_a53 verdin-am62_a53) /binman/tifsstub-fs/tifsstub-fs-enc.bin (ti-sysfw/ti-fs-stub-firmware-am62x-hs-enc.bin): | |
+(am62x_evm_a53 verdin-am62_a53) Image 'tifsstub-gp' is missing optional external blobs but is still functional: tifsstub-gp.bin | |
+(am62x_evm_a53 verdin-am62_a53) /binman/tifsstub-gp/tifsstub-gp.bin (ti-sysfw/ti-fs-stub-firmware-am62x-gp.bin): | |
+(j7200_evm_a72) /binman/ti-dm/blob-ext (ti-dm/j7200/ipc_echo_testb_mcu1_0_release_strip.xer5f): | |
+(am68_sk_a72 j721s2_evm_a72) /binman/ti-dm/blob-ext (ti-dm/j721s2/ipc_echo_testb_mcu1_0_release_strip.xer5f): | |
+(am69_sk_a72 j784s4_evm_a72) /binman/ti-dm/blob-ext (ti-dm/j784s4/ipc_echo_testb_mcu1_0_release_strip.xer5f): | |
+(px30-core-ctouch2-of10-px30 px30-core-ctouch2-px30 px30-core-edimm2.2-px30 odroid-go2 evb-px30 firefly-px30 ringneck-px30 evb-rk3328 nanopi-r2c-plus-rk3328 nanopi-r2c-rk3328 nanopi-r2s-rk3328 orangepi-r1-plus-lts-rk3328 orangepi-r1-plus-rk3328 roc-cc-rk3328 rock-pi-e-rk3328 rock64-rk3328 evb-px5 lion-rk3368 roc-pc-mezzanine-rk3399 roc-pc-rk3399 chromebook_bob chromebook_kevin pinebook-pro-rk3399 pinephone-pro-rk3399 rockpro64-rk3399 rock-4c-plus-rk3399 rock-4se-rk3399 rock-pi-4-rk3399 rock-pi-4c-rk3399 eaidk-610-rk3399 evb-rk3399 firefly-rk3399 khadas-edge-captain-rk3399 khadas-edge-rk3399 khadas-edge-v-rk3399 leez-rk3399 nanopc-t4-rk3399 nanopi-m4-2gb-rk3399 nanopi-m4-rk3399 nanopi-m4b-rk3399 nanopi-neo4-rk3399 nanopi-r4s-rk3399 orangepi-rk3399 rock-pi-n10-rk3399pro puma-rk3399 ficus-rk3399 rock960-rk3399) Image 'simple-bin' is missing external blobs and is non-functional: atf-bl31 | |
+(px30-core-ctouch2-of10-px30 px30-core-ctouch2-px30 px30-core-edimm2.2-px30 odroid-go2 evb-px30 firefly-px30 ringneck-px30 roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 evb-rk3328 nanopi-r2c-plus-rk3328 nanopi-r2c-rk3328 nanopi-r2s-rk3328 orangepi-r1-plus-lts-rk3328 orangepi-r1-plus-rk3328 roc-cc-rk3328 rock-pi-e-rk3328 rock64-rk3328 evb-px5 lion-rk3368 roc-pc-mezzanine-rk3399 roc-pc-rk3399 chromebook_bob chromebook_kevin pinebook-pro-rk3399 pinephone-pro-rk3399 rockpro64-rk3399 rock-4c-plus-rk3399 rock-4se-rk3399 rock-pi-4-rk3399 rock-pi-4c-rk3399 eaidk-610-rk3399 evb-rk3399 firefly-rk3399 khadas-edge-captain-rk3399 khadas-edge-rk3399 khadas-edge-v-rk3399 leez-rk3399 nanopc-t4-rk3399 nanopi-m4-2gb-rk3399 nanopi-m4-rk3399 nanopi-m4b-rk3399 nanopi-neo4-rk3399 nanopi-r4s-rk3399 orangepi-rk3399 rock-pi-n10-rk3399pro puma-rk3399 ficus-rk3399 rock960-rk3399 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588) /binman/simple-bin/fit/images/@atf-SEQ/atf-bl31 (atf-bl31): | |
+(px30-core-ctouch2-of10-px30 px30-core-ctouch2-px30 px30-core-edimm2.2-px30 odroid-go2 evb-px30 firefly-px30 ringneck-px30 roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 evb-rk3328 nanopi-r2c-plus-rk3328 nanopi-r2c-rk3328 nanopi-r2s-rk3328 orangepi-r1-plus-lts-rk3328 orangepi-r1-plus-rk3328 roc-cc-rk3328 rock-pi-e-rk3328 rock64-rk3328 evb-px5 lion-rk3368 roc-pc-mezzanine-rk3399 roc-pc-rk3399 chromebook_bob chromebook_kevin pinebook-pro-rk3399 pinephone-pro-rk3399 rockpro64-rk3399 rock-4c-plus-rk3399 rock-4se-rk3399 rock-pi-4-rk3399 rock-pi-4c-rk3399 eaidk-610-rk3399 evb-rk3399 firefly-rk3399 khadas-edge-captain-rk3399 khadas-edge-rk3399 khadas-edge-v-rk3399 leez-rk3399 nanopc-t4-rk3399 nanopi-m4-2gb-rk3399 nanopi-m4-rk3399 nanopi-m4b-rk3399 nanopi-neo4-rk3399 nanopi-r4s-rk3399 orangepi-rk3399 rock-pi-n10-rk3399pro puma-rk3399 ficus-rk3399 rock960-rk3399 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588) Image 'simple-bin' is missing optional external blobs but is still functional: tee-os | |
+(px30-core-ctouch2-of10-px30 px30-core-ctouch2-px30 px30-core-edimm2.2-px30 odroid-go2 evb-px30 firefly-px30 ringneck-px30 roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 evb-rk3328 nanopi-r2c-plus-rk3328 nanopi-r2c-rk3328 nanopi-r2s-rk3328 orangepi-r1-plus-lts-rk3328 orangepi-r1-plus-rk3328 roc-cc-rk3328 rock-pi-e-rk3328 rock64-rk3328 evb-px5 lion-rk3368 roc-pc-mezzanine-rk3399 roc-pc-rk3399 chromebook_bob chromebook_kevin pinebook-pro-rk3399 pinephone-pro-rk3399 rockpro64-rk3399 rock-4c-plus-rk3399 rock-4se-rk3399 rock-pi-4-rk3399 rock-pi-4c-rk3399 eaidk-610-rk3399 evb-rk3399 firefly-rk3399 khadas-edge-captain-rk3399 khadas-edge-rk3399 khadas-edge-v-rk3399 leez-rk3399 nanopc-t4-rk3399 nanopi-m4-2gb-rk3399 nanopi-m4-rk3399 nanopi-m4b-rk3399 nanopi-neo4-rk3399 nanopi-r4s-rk3399 orangepi-rk3399 rock-pi-n10-rk3399pro puma-rk3399 ficus-rk3399 rock960-rk3399 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588) /binman/simple-bin/fit/images/@tee-SEQ/tee-os (tee-os): | |
+(roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588) Image 'simple-bin' is missing external blobs and is non-functional: rockchip-tpl atf-bl31 | |
+(roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588) /binman/simple-bin/mkimage/rockchip-tpl (rockchip-tpl): | |
+(roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588) An external TPL is required to initialize DRAM. Get the external TPL | |
+(roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588) binary and build with ROCKCHIP_TPL=/path/to/ddr.bin. One possible source | |
+(roc-cc-rk3308 evb-rk3308 rock-pi-s-rk3308 anbernic-rgxx3-rk3566 odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 soquartz-blade-rk3566 soquartz-cm4-rk3566 soquartz-model-a-rk3566 bpi-r2-pro-rk3568 evb-rk3568 generic-rk3568 lubancat-2-rk3568 nanopi-r5c-rk3568 nanopi-r5s-rk3568 powkiddy-x55-rk3566 radxa-cm3-io-rk3566 radxa-e25-rk3568 rock-3a-rk3568 neu6a-io-rk3588 neu6b-io-rk3588 nanopc-t6-rk3588 nova-rk3588s quartzpro64-rk3588 rock5a-rk3588s rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 evb-rk3588 generic-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s toybrick-rk3588 jaguar-rk3588 turing-rk1-rk3588) for the external TPL binary is https://github.com/rockchip-linux/rkbin. | |
+(odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 generic-rk3568 rock-3a-rk3568 nanopc-t6-rk3588 rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s) Image 'simple-bin-spi' is missing external blobs and is non-functional: rockchip-tpl | |
+(odroid-m1-rk3568 pinetab2-rk3566 quartz64-a-rk3566 quartz64-b-rk3566 generic-rk3568 rock-3a-rk3568 nanopc-t6-rk3588 rock5b-rk3588 coolpi-4b-rk3588s coolpi-cm5-evb-rk3588 orangepi-5-plus-rk3588 orangepi-5-rk3588s) /binman/simple-bin-spi/mkimage/rockchip-tpl (rockchip-tpl): | |
+(socfpga_stratix10_atf socfpga_agilex_atf socfpga_agilex5 socfpga_n5x_atf) Image 'u-boot' is missing external blobs and is non-functional: blob-ext | |
+(socfpga_stratix10_atf socfpga_agilex_atf socfpga_agilex5 socfpga_n5x_atf) /binman/u-boot/fit/images/atf/blob-ext (bl31.bin): | |
+(socfpga_stratix10_atf socfpga_agilex_atf socfpga_agilex_vab socfpga_agilex5 socfpga_n5x_atf socfpga_n5x_vab) Image 'kernel' is missing external blobs and is non-functional: blob-ext blob-ext | |
+(socfpga_stratix10_atf socfpga_agilex_atf socfpga_agilex5 socfpga_n5x_atf) /binman/kernel/fit/images/kernel/blob-ext (Image): | |
+(socfpga_stratix10_atf socfpga_agilex_atf socfpga_agilex5 socfpga_n5x_atf) /binman/kernel/fit/images/fdt/blob-ext (linux.dtb): | |
+(socfpga_agilex_vab socfpga_n5x_vab) Image 'u-boot' is missing external blobs and is non-functional: blob-ext blob-ext blob-ext | |
+(socfpga_agilex_vab socfpga_n5x_vab) /binman/u-boot/fit/images/uboot/blob-ext (signed-u-boot-nodtb.bin): | |
+(socfpga_agilex_vab socfpga_n5x_vab) /binman/u-boot/fit/images/atf/blob-ext (signed-bl31.bin): | |
+(socfpga_agilex_vab socfpga_n5x_vab) /binman/u-boot/fit/images/fdt-0/blob-ext (signed-u-boot.dtb): | |
+(socfpga_agilex_vab socfpga_n5x_vab) /binman/kernel/fit/images/kernel/blob-ext (signed-Image): | |
+(socfpga_agilex_vab socfpga_n5x_vab) /binman/kernel/fit/images/fdt/blob-ext (signed-linux.dtb): | |
+(a64-olinuxino a64-olinuxino-emmc amarula_a64_relic bananapi_m2_plus_h5 bananapi_m64 beelink_gs1 emlid_neutis_n5_devboard libretech_all_h3_cc_h5 libretech_all_h3_it_h5 libretech_all_h5_cc_h5 nanopi_a64 nanopi_neo2 nanopi_neo_plus2 nanopi_r1s_h5 oceanic_5205_5inmfd orangepi_3 orangepi_lite2 orangepi_one_plus orangepi_pc2 orangepi_prime orangepi_win orangepi_zero_plus orangepi_zero_plus2 pine64-lts pine64_plus pine_h64 pinebook pinephone pinetab sopine_baseboard tanix_tx6 teres_i) Image 'u-boot-sunxi-with-spl' is missing external blobs and is non-functional: atf-bl31 scp | |
+(a64-olinuxino a64-olinuxino-emmc amarula_a64_relic bananapi_m2_plus_h5 bananapi_m64 beelink_gs1 emlid_neutis_n5_devboard libretech_all_h3_cc_h5 libretech_all_h3_it_h5 libretech_all_h5_cc_h5 nanopi_a64 nanopi_neo2 nanopi_neo_plus2 nanopi_r1s_h5 oceanic_5205_5inmfd orangepi_3 orangepi_lite2 orangepi_one_plus orangepi_pc2 orangepi_prime orangepi_win orangepi_zero2 orangepi_zero2w orangepi_zero3 orangepi_zero_plus orangepi_zero_plus2 pine64-lts pine64_plus pine_h64 pinebook pinephone pinetab sopine_baseboard tanix_tx6 teres_i transpeed-8k618-t x96_mate) /binman/u-boot-sunxi-with-spl/fit/images/atf/atf-bl31 (bl31.bin): | |
+(a64-olinuxino a64-olinuxino-emmc amarula_a64_relic bananapi_m2_plus_h5 bananapi_m64 beelink_gs1 emlid_neutis_n5_devboard libretech_all_h3_cc_h5 libretech_all_h3_it_h5 libretech_all_h5_cc_h5 nanopi_a64 nanopi_neo2 nanopi_neo_plus2 nanopi_r1s_h5 oceanic_5205_5inmfd orangepi_3 orangepi_lite2 orangepi_one_plus orangepi_pc2 orangepi_prime orangepi_win orangepi_zero2 orangepi_zero2w orangepi_zero3 orangepi_zero_plus orangepi_zero_plus2 pine64-lts pine64_plus pine_h64 pinebook pinephone pinetab sopine_baseboard tanix_tx6 teres_i transpeed-8k618-t x96_mate) Please read the section on ARM Trusted Firmware (ATF) in | |
+(a64-olinuxino a64-olinuxino-emmc amarula_a64_relic bananapi_m2_plus_h5 bananapi_m64 beelink_gs1 emlid_neutis_n5_devboard libretech_all_h3_cc_h5 libretech_all_h3_it_h5 libretech_all_h5_cc_h5 nanopi_a64 nanopi_neo2 nanopi_neo_plus2 nanopi_r1s_h5 oceanic_5205_5inmfd orangepi_3 orangepi_lite2 orangepi_one_plus orangepi_pc2 orangepi_prime orangepi_win orangepi_zero2 orangepi_zero2w orangepi_zero3 orangepi_zero_plus orangepi_zero_plus2 pine64-lts pine64_plus pine_h64 pinebook pinephone pinetab sopine_baseboard tanix_tx6 teres_i transpeed-8k618-t x96_mate) board/sunxi/README.sunxi64 | |
+(a64-olinuxino a64-olinuxino-emmc amarula_a64_relic bananapi_m2_plus_h5 bananapi_m64 beelink_gs1 emlid_neutis_n5_devboard libretech_all_h3_cc_h5 libretech_all_h3_it_h5 libretech_all_h5_cc_h5 nanopi_a64 nanopi_neo2 nanopi_neo_plus2 nanopi_r1s_h5 oceanic_5205_5inmfd orangepi_3 orangepi_lite2 orangepi_one_plus orangepi_pc2 orangepi_prime orangepi_win orangepi_zero_plus orangepi_zero_plus2 pine64-lts pine64_plus pine_h64 pinebook pinephone pinetab sopine_baseboard tanix_tx6 teres_i) /binman/u-boot-sunxi-with-spl/fit/images/scp/scp (scp.bin): | |
+(a64-olinuxino a64-olinuxino-emmc amarula_a64_relic bananapi_m2_plus_h5 bananapi_m64 beelink_gs1 emlid_neutis_n5_devboard libretech_all_h3_cc_h5 libretech_all_h3_it_h5 libretech_all_h5_cc_h5 nanopi_a64 nanopi_neo2 nanopi_neo_plus2 nanopi_r1s_h5 oceanic_5205_5inmfd orangepi_3 orangepi_lite2 orangepi_one_plus orangepi_pc2 orangepi_prime orangepi_win orangepi_zero_plus orangepi_zero_plus2 pine64-lts pine64_plus pine_h64 pinebook pinephone pinetab sopine_baseboard tanix_tx6 teres_i) SCP firmware is required for system suspend, but is otherwise optional. | |
+(a64-olinuxino a64-olinuxino-emmc amarula_a64_relic bananapi_m2_plus_h5 bananapi_m64 beelink_gs1 emlid_neutis_n5_devboard libretech_all_h3_cc_h5 libretech_all_h3_it_h5 libretech_all_h5_cc_h5 nanopi_a64 nanopi_neo2 nanopi_neo_plus2 nanopi_r1s_h5 oceanic_5205_5inmfd orangepi_3 orangepi_lite2 orangepi_one_plus orangepi_pc2 orangepi_prime orangepi_win orangepi_zero_plus orangepi_zero_plus2 pine64-lts pine64_plus pine_h64 pinebook pinephone pinetab sopine_baseboard tanix_tx6 teres_i) Please read the section on SCP firmware in board/sunxi/README.sunxi64 | |
+(orangepi_zero2 orangepi_zero2w orangepi_zero3 transpeed-8k618-t x96_mate) Image 'u-boot-sunxi-with-spl' is missing external blobs and is non-functional: atf-bl31 | |
+(xilinx_zynqmp_kria xilinx_zynqmp_virt) WARNING: BL31 file bl31.bin NOT found, U-Boot will run in EL3 | |
+(xilinx_zynqmp_kria xilinx_zynqmp_virt) This board uses CONFIG_SPL_FIT_GENERATOR. Please migrate | |
+(xilinx_zynqmp_kria xilinx_zynqmp_virt) to binman instead, to avoid the proliferation of | |
+(xilinx_zynqmp_kria xilinx_zynqmp_virt) arch-specific scripts with no tests. | |
+(xilinx_zynqmp_virt) Can't set hash 'value' property for 'hash' node(FDT_ERR_NOSPACE) | |
+(xilinx_zynqmp_virt) Can't set hash value for 'hash' hash node in 'fdt_35' image node | |
+(xilinx_zynqmp_virt) Can't add verification data for node 'fdt_35' (<unknown error>) | |
+(brsmarc1) cp: cannot stat 'MLO.byteswap': No such file or directory | |
+(j721e_beagleboneai64_r5 j721e_evm_r5 j721e_sk_r5) Image 'sysfw_gp' is missing optional external blobs but is still functional: ti-fs.bin | |
+(j721e_beagleboneai64_r5 j721e_evm_r5 j721e_sk_r5) /binman/sysfw_gp/ti-fs.bin (ti-sysfw/ti-fs-firmware-j721e-gp.bin): | |
+(am62x_beagleplay_r5 am62x_evm_r5) Image 'tiboot3-am62x-gp-evm.bin' is missing optional external blobs but is still functional: ti-fs-gp.bin | |
+(am62x_beagleplay_r5 am62x_evm_r5) /binman/tiboot3-am62x-gp-evm.bin/ti-fs-gp.bin (ti-sysfw/ti-fs-firmware-am62x-gp.bin): | |
+(phycore_am62x_r5) Image 'tiboot3-am62x-hs-phycore-som.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(phycore_am62x_r5) /binman/tiboot3-am62x-hs-phycore-som.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-am62x-hs-enc.bin): | |
+(phycore_am62x_r5) /binman/tiboot3-am62x-hs-phycore-som.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-am62x-hs-cert.bin): | |
+(phycore_am62x_r5) Image 'tiboot3-am62x-hs-fs-phycore-som.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(phycore_am62x_r5) /binman/tiboot3-am62x-hs-fs-phycore-som.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-am62x-hs-fs-enc.bin): | |
+(phycore_am62x_r5) /binman/tiboot3-am62x-hs-fs-phycore-som.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-am62x-hs-fs-cert.bin): | |
+(phycore_am62x_r5) Image 'tiboot3-am62x-gp-phycore-som.bin' is missing optional external blobs but is still functional: ti-fs-gp.bin | |
+(phycore_am62x_r5) /binman/tiboot3-am62x-gp-phycore-som.bin/ti-fs-gp.bin (ti-sysfw/ti-fs-firmware-am62x-gp.bin): | |
+(phycore_am64x_r5) Image 'tiboot3-am64x_sr2-hs-phycore-som.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(phycore_am64x_r5) /binman/tiboot3-am64x_sr2-hs-phycore-som.bin/ti-fs-enc.bin (ti-sysfw/ti-sci-firmware-am64x_sr2-hs-enc.bin): | |
+(phycore_am64x_r5) /binman/tiboot3-am64x_sr2-hs-phycore-som.bin/sysfw-inner-cert (ti-sysfw/ti-sci-firmware-am64x_sr2-hs-cert.bin): | |
+(phycore_am64x_r5) Image 'tiboot3-am64x_sr2-hs-fs-phycore-som.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(phycore_am64x_r5) /binman/tiboot3-am64x_sr2-hs-fs-phycore-som.bin/ti-fs-enc.bin (ti-sysfw/ti-sci-firmware-am64x_sr2-hs-fs-enc.bin): | |
+(phycore_am64x_r5) /binman/tiboot3-am64x_sr2-hs-fs-phycore-som.bin/sysfw-inner-cert (ti-sysfw/ti-sci-firmware-am64x_sr2-hs-fs-cert.bin): | |
+(phycore_am64x_r5) Image 'tiboot3-am64x-gp-phycore-som.bin' is missing optional external blobs but is still functional: ti-sci-gp.bin | |
+(phycore_am64x_r5) /binman/tiboot3-am64x-gp-phycore-som.bin/ti-sci-gp.bin (ti-sysfw/ti-sci-firmware-am64x-gp.bin): | |
+(am62ax_evm_r5) Image 'tiboot3-am62ax-hs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(am62ax_evm_r5) /binman/tiboot3-am62ax-hs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-am62ax-hs-enc.bin): | |
+(am62ax_evm_r5) /binman/tiboot3-am62ax-hs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-am62ax-hs-cert.bin): | |
+(am62ax_evm_r5) Image 'tiboot3-am62ax-hs-fs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(am62ax_evm_r5) /binman/tiboot3-am62ax-hs-fs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-am62ax-hs-fs-enc.bin): | |
+(am62ax_evm_r5) /binman/tiboot3-am62ax-hs-fs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-am62ax-hs-fs-cert.bin): | |
+(am62ax_evm_r5) Image 'tiboot3-am62ax-gp-evm.bin' is missing optional external blobs but is still functional: ti-fs-gp.bin | |
+(am62ax_evm_r5) /binman/tiboot3-am62ax-gp-evm.bin/ti-fs-gp.bin (ti-sysfw/ti-fs-firmware-am62ax-gp.bin): | |
+(am62px_evm_r5) Image 'tiboot3-am62px-hs-fs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(am62px_evm_r5) /binman/tiboot3-am62px-hs-fs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-am62px-hs-fs-enc.bin): | |
+(am62px_evm_r5) /binman/tiboot3-am62px-hs-fs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-am62px-hs-fs-cert.bin): | |
+(am62x_evm_r5) Image 'tiboot3-am62x-hs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(am62x_evm_r5) /binman/tiboot3-am62x-hs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-am62x-hs-enc.bin): | |
+(am62x_evm_r5) /binman/tiboot3-am62x-hs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-am62x-hs-cert.bin): | |
+(am62x_evm_r5) Image 'tiboot3-am62x-hs-fs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(am62x_evm_r5) /binman/tiboot3-am62x-hs-fs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-am62x-hs-fs-enc.bin): | |
+(am62x_evm_r5) /binman/tiboot3-am62x-hs-fs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-am62x-hs-fs-cert.bin): | |
+(am64x_evm_r5) Image 'tiboot3-am64x_sr2-hs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(am64x_evm_r5) /binman/tiboot3-am64x_sr2-hs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-sci-firmware-am64x_sr2-hs-enc.bin): | |
+(am64x_evm_r5) /binman/tiboot3-am64x_sr2-hs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-sci-firmware-am64x_sr2-hs-cert.bin): | |
+(am64x_evm_r5) Image 'tiboot3-am64x_sr2-hs-fs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(am64x_evm_r5) /binman/tiboot3-am64x_sr2-hs-fs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-sci-firmware-am64x_sr2-hs-fs-enc.bin): | |
+(am64x_evm_r5) /binman/tiboot3-am64x_sr2-hs-fs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-sci-firmware-am64x_sr2-hs-fs-cert.bin): | |
+(am64x_evm_r5) Image 'tiboot3-am64x-gp-evm.bin' is missing optional external blobs but is still functional: ti-sci-gp.bin | |
+(am64x_evm_r5) /binman/tiboot3-am64x-gp-evm.bin/ti-sci-gp.bin (ti-sysfw/ti-sci-firmware-am64x-gp.bin): | |
+(am65x_evm_r5 am65x_evm_r5_usbdfu am65x_evm_r5_usbmsc) Image 'sysfw' is missing optional external blobs but is still functional: ti-sci-cert.bin ti-sci-firmware-am65x-hs-enc.bin | |
+(am65x_evm_r5 am65x_evm_r5_usbdfu am65x_evm_r5_usbmsc) /binman/sysfw/ti-sci-cert.bin (ti-sysfw/ti-sci-firmware-am65x_sr2-hs-cert.bin): | |
+(am65x_evm_r5 am65x_evm_r5_usbdfu am65x_evm_r5_usbmsc) /binman/sysfw/ti-sci-firmware-am65x-hs-enc.bin (ti-sysfw/ti-sci-firmware-am65x_sr2-hs-enc.bin): | |
+(am65x_evm_r5 am65x_evm_r5_usbdfu am65x_evm_r5_usbmsc) Image 'sysfw_gp' is missing optional external blobs but is still functional: ti-sci.bin | |
+(am65x_evm_r5 am65x_evm_r5_usbdfu am65x_evm_r5_usbmsc) /binman/sysfw_gp/ti-sci.bin (ti-sysfw/ti-sci-firmware-am65x_sr2-gp.bin): | |
+(j7200_evm_r5) Image 'tiboot3-j7200-hs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(j7200_evm_r5) /binman/tiboot3-j7200-hs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-j7200-hs-enc.bin): | |
+(j7200_evm_r5) /binman/tiboot3-j7200-hs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-j7200-hs-cert.bin): | |
+(j7200_evm_r5) Image 'tiboot3-j7200_sr2-hs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(j7200_evm_r5) /binman/tiboot3-j7200_sr2-hs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-j7200_sr2-hs-enc.bin): | |
+(j7200_evm_r5) /binman/tiboot3-j7200_sr2-hs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-j7200_sr2-hs-cert.bin): | |
+(j7200_evm_r5) Image 'tiboot3-j7200-hs-fs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(j7200_evm_r5) /binman/tiboot3-j7200-hs-fs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-j7200-hs-fs-enc.bin): | |
+(j7200_evm_r5) /binman/tiboot3-j7200-hs-fs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-j7200-hs-fs-cert.bin): | |
+(j7200_evm_r5) Image 'tiboot3-j7200_sr2-hs-fs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(j7200_evm_r5) /binman/tiboot3-j7200_sr2-hs-fs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-j7200_sr2-hs-fs-enc.bin): | |
+(j7200_evm_r5) /binman/tiboot3-j7200_sr2-hs-fs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-j7200_sr2-hs-fs-cert.bin): | |
+(j7200_evm_r5) Image 'tiboot3-j7200-gp-evm.bin' is missing optional external blobs but is still functional: ti-fs-gp.bin | |
+(j7200_evm_r5) /binman/tiboot3-j7200-gp-evm.bin/ti-fs-gp.bin (ti-sysfw/ti-fs-firmware-j7200-gp.bin): | |
+(j721e_evm_r5 j721e_sk_r5) Image 'sysfw' is missing optional external blobs but is still functional: ti-fs-cert.bin ti-fs-firmware-j721e_sr1_1-hs-enc.bin | |
+(j721e_evm_r5 j721e_sk_r5) /binman/sysfw/ti-fs-cert.bin (ti-sysfw/ti-fs-firmware-j721e_sr1_1-hs-cert.bin): | |
+(j721e_evm_r5 j721e_sk_r5) /binman/sysfw/ti-fs-firmware-j721e_sr1_1-hs-enc.bin (ti-sysfw/ti-fs-firmware-j721e_sr1_1-hs-enc.bin): | |
+(j721e_evm_r5 j721e_sk_r5) Image 'sysfw_sr2' is missing optional external blobs but is still functional: ti-fs-cert.bin ti-fs-firmware-j721e_sr2-hs-enc.bin | |
+(j721e_evm_r5 j721e_sk_r5) /binman/sysfw_sr2/ti-fs-cert.bin (ti-sysfw/ti-fs-firmware-j721e_sr2-hs-cert.bin): | |
+(j721e_evm_r5 j721e_sk_r5) /binman/sysfw_sr2/ti-fs-firmware-j721e_sr2-hs-enc.bin (ti-sysfw/ti-fs-firmware-j721e_sr2-hs-enc.bin): | |
+(j721e_evm_r5 j721e_sk_r5) Image 'sysfw_fs_sr1_1' is missing optional external blobs but is still functional: ti-fs-cert-fs.bin ti-fs-firmware-j721e-hs-fs-enc.bin | |
+(j721e_evm_r5 j721e_sk_r5) /binman/sysfw_fs_sr1_1/ti-fs-cert-fs.bin (ti-sysfw/ti-fs-firmware-j721e_sr1_1-hs-fs-cert.bin): | |
+(j721e_evm_r5 j721e_sk_r5) /binman/sysfw_fs_sr1_1/ti-fs-firmware-j721e-hs-fs-enc.bin (ti-sysfw/ti-fs-firmware-j721e_sr1_1-hs-fs-enc.bin): | |
+(j721e_evm_r5 j721e_sk_r5) Image 'sysfw_fs' is missing optional external blobs but is still functional: ti-fs-cert-fs.bin ti-fs-firmware-j721e-hs-fs-enc.bin | |
+(j721e_evm_r5 j721e_sk_r5) /binman/sysfw_fs/ti-fs-cert-fs.bin (ti-sysfw/ti-fs-firmware-j721e_sr2-hs-fs-cert.bin): | |
+(j721e_evm_r5 j721e_sk_r5) /binman/sysfw_fs/ti-fs-firmware-j721e-hs-fs-enc.bin (ti-sysfw/ti-fs-firmware-j721e_sr2-hs-fs-enc.bin): | |
+(am68_sk_r5 j721s2_evm_r5) Image 'tiboot3-j721s2-hs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(am68_sk_r5 j721s2_evm_r5) /binman/tiboot3-j721s2-hs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-j721s2-hs-enc.bin): | |
+(am68_sk_r5 j721s2_evm_r5) /binman/tiboot3-j721s2-hs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-j721s2-hs-cert.bin): | |
+(am68_sk_r5 j721s2_evm_r5) Image 'tiboot3-j721s2-hs-fs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(am68_sk_r5 j721s2_evm_r5) /binman/tiboot3-j721s2-hs-fs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-j721s2-hs-fs-enc.bin): | |
+(am68_sk_r5 j721s2_evm_r5) /binman/tiboot3-j721s2-hs-fs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-j721s2-hs-fs-cert.bin): | |
+(am68_sk_r5 j721s2_evm_r5) Image 'tiboot3-j721s2-gp-evm.bin' is missing optional external blobs but is still functional: ti-fs-gp.bin | |
+(am68_sk_r5 j721s2_evm_r5) /binman/tiboot3-j721s2-gp-evm.bin/ti-fs-gp.bin (ti-sysfw/ti-fs-firmware-j721s2-gp.bin): | |
+(am69_sk_r5 j784s4_evm_r5) Image 'tiboot3-j784s4-hs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(am69_sk_r5 j784s4_evm_r5) /binman/tiboot3-j784s4-hs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-j784s4-hs-enc.bin): | |
+(am69_sk_r5 j784s4_evm_r5) /binman/tiboot3-j784s4-hs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-j784s4-hs-cert.bin): | |
+(am69_sk_r5 j784s4_evm_r5) Image 'tiboot3-j784s4-hs-fs-evm.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(am69_sk_r5 j784s4_evm_r5) /binman/tiboot3-j784s4-hs-fs-evm.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-j784s4-hs-fs-enc.bin): | |
+(am69_sk_r5 j784s4_evm_r5) /binman/tiboot3-j784s4-hs-fs-evm.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-j784s4-hs-fs-cert.bin): | |
+(am69_sk_r5 j784s4_evm_r5) Image 'tiboot3-j784s4-gp-evm.bin' is missing optional external blobs but is still functional: ti-fs-gp.bin | |
+(am69_sk_r5 j784s4_evm_r5) /binman/tiboot3-j784s4-gp-evm.bin/ti-fs-gp.bin (ti-sysfw/ti-fs-firmware-j784s4-gp.bin): | |
+(verdin-am62_r5) Image 'tiboot3-am62x-hs-verdin.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(verdin-am62_r5) /binman/tiboot3-am62x-hs-verdin.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-am62x-hs-enc.bin): | |
+(verdin-am62_r5) /binman/tiboot3-am62x-hs-verdin.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-am62x-hs-cert.bin): | |
+(verdin-am62_r5) Image 'tiboot3-am62x-hs-fs-verdin.bin' is missing optional external blobs but is still functional: ti-fs-enc.bin sysfw-inner-cert | |
+(verdin-am62_r5) /binman/tiboot3-am62x-hs-fs-verdin.bin/ti-fs-enc.bin (ti-sysfw/ti-fs-firmware-am62x-hs-fs-enc.bin): | |
+(verdin-am62_r5) /binman/tiboot3-am62x-hs-fs-verdin.bin/sysfw-inner-cert (ti-sysfw/ti-fs-firmware-am62x-hs-fs-cert.bin): | |
+(verdin-am62_r5) Image 'tiboot3-am62x-gp-verdin.bin' is missing optional external blobs but is still functional: ti-fs-gp.bin | |
+(verdin-am62_r5) /binman/tiboot3-am62x-gp-verdin.bin/ti-fs-gp.bin (ti-sysfw/ti-fs-firmware-am62x-gp.bin): | |
+(imx6qdl_icore_mmc kmcent2) This board does not use CONFIG_WDT (Driver Model | |
+(imx6qdl_icore_mmc kmcent2) for DM watchdog). Please update the board to use | |
+(imx6qdl_icore_mmc kmcent2) CONFIG_WDT before the v2019.10 release. Failure to | |
+(evb-rk3229 evb-rk3288 sonoff-ihost-rv1126) Image 'simple-bin' is missing external blobs and is non-functional: tee-os | |
+(evb-rk3229 evb-rk3288 sonoff-ihost-rv1126) /binman/simple-bin/fit/images/op-tee/tee-os (tee-os): | |
+(socfpga_secu1) 1024+0 records in | |
+(socfpga_secu1) 1024+0 records out | |
+(socfpga_secu1) 65536 bytes (66 kB, 64 KiB) copied, 0.0039644 s, 16.5 MB/s | |
+(mt7621_nand_rfb mt7621_rfb) Image 'u-boot-spl-ddr' is missing external blobs and is non-functional: stage_bin | |
+(mt7621_nand_rfb mt7621_rfb) /binman/u-boot-spl-ddr/stage_bin (mt7621_stage_sram.bin): | |
+(boston64r2 boston64r2el boston64r6 boston64r6el malta64 malta64el octeon_ebb7304 octeon_nic23) WARNING: Unexpected reloc section name '.rel.dyn' | |
+(ae350_rv32_falcon ae350_rv32_falcon_xip ae350_rv64_falcon ae350_rv64_falcon_xip) Image 'itb' is missing external blobs and is non-functional: blob-ext opensbi | |
+(ae350_rv32_falcon ae350_rv32_falcon_xip ae350_rv64_falcon ae350_rv64_falcon_xip) /binman/itb/fit/images/linux/blob-ext (Image): | |
+(ae350_rv32_falcon ae350_rv32_falcon_xip ae350_rv32_spl ae350_rv32_spl_xip qemu-riscv32_spl xilinx_mbv32 xilinx_mbv32_smode ae350_rv64_falcon ae350_rv64_falcon_xip ae350_rv64_spl ae350_rv64_spl_xip sifive_unleashed sifive_unmatched qemu-riscv64_spl starfive_visionfive2) /binman/itb/fit/images/opensbi/opensbi (fw_dynamic.bin): | |
+(ae350_rv32_falcon ae350_rv32_falcon_xip ae350_rv32_spl ae350_rv32_spl_xip qemu-riscv32_spl xilinx_mbv32 xilinx_mbv32_smode ae350_rv64_falcon ae350_rv64_falcon_xip ae350_rv64_spl ae350_rv64_spl_xip sifive_unleashed sifive_unmatched qemu-riscv64_spl starfive_visionfive2) See the documentation for your board. The OpenSBI git repo is at | |
+(ae350_rv32_falcon ae350_rv32_falcon_xip ae350_rv32_spl ae350_rv32_spl_xip qemu-riscv32_spl xilinx_mbv32 xilinx_mbv32_smode ae350_rv64_falcon ae350_rv64_falcon_xip ae350_rv64_spl ae350_rv64_spl_xip sifive_unleashed sifive_unmatched qemu-riscv64_spl starfive_visionfive2) https://github.com/riscv/opensbi.git | |
+(ae350_rv32_falcon ae350_rv32_falcon_xip ae350_rv32_spl ae350_rv32_spl_xip qemu-riscv32_spl xilinx_mbv32 xilinx_mbv32_smode ae350_rv64_falcon ae350_rv64_falcon_xip ae350_rv64_spl ae350_rv64_spl_xip sifive_unleashed sifive_unmatched qemu-riscv64_spl starfive_visionfive2) You may need to build fw_dynamic.bin first and re-build u-boot with | |
+(ae350_rv32_falcon ae350_rv32_falcon_xip ae350_rv32_spl ae350_rv32_spl_xip qemu-riscv32_spl xilinx_mbv32 xilinx_mbv32_smode ae350_rv64_falcon ae350_rv64_falcon_xip ae350_rv64_spl ae350_rv64_spl_xip sifive_unleashed sifive_unmatched qemu-riscv64_spl starfive_visionfive2) OPENSBI=/path/to/fw_dynamic.bin | |
+(ae350_rv32_spl ae350_rv32_spl_xip qemu-riscv32_spl xilinx_mbv32 xilinx_mbv32_smode ae350_rv64_spl ae350_rv64_spl_xip sifive_unleashed sifive_unmatched qemu-riscv64_spl starfive_visionfive2) Image 'itb' is missing external blobs and is non-functional: opensbi | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 14: Offset (0x00), | |
+(chromebook_coral) Remark 2158 - Unnecessary/redundant use of Offset operator ^ | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 409: OperationRegion (PDW0, SystemMemory, Local0, 4) | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPC0) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 418: OperationRegion (PDW0, SystemMemory, Local0, 4) | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SPC0) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 427: OperationRegion (PDW1, SystemMemory, Local0, 4) | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPC1) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 436: OperationRegion (PDW1, SystemMemory, Local0, 4) | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SPC1) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 459: OperationRegion (SHO0, SystemMemory, Or ( Or | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GHO) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 469: OperationRegion (SHO0, SystemMemory, Or ( Or | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SHO) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 942: Name (WSHC, Package() { VBT3 }) | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.CHSW) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 947: Name (DIW1, "") | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.FWID) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 949: Name (DIWF, Package() { DIW1 }) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 954: Name (DIR1, "") | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.FRID) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 956: Name (DIRF, Package() { DIR1 }) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 961: Name (DIW0, "") | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.HWID) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 963: Name (DIWH, Package() { DIW0 }) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 968: Name (FNIB, Package() { VBT0, VBT1, VBT2, VBT7, VBT8 }) | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.BINF) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 977: Name(VNBV, Package() { | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.VBNV) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 985: Name(TAD0,"") | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.VDAT) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 987: Name (TADV, Package() { TAD0 }) | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.VDAT) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 992: Name(PAMF, Package() { VBT9 }) | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.FMAP) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 997: Name(HASH, Package() { MEHH }) | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.MECK) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1002: Name(TSLM, Package() { "CHSW", "FWID", "HWID", "FRID", "BINF", | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.MLST) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1137: Offset (0x00), | |
+(chromebook_coral) Remark 2158 - Unnecessary/redundant use of Offset operator ^ | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1182: Offset (0x0e), | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1190: Offset (0x00), | |
+(chromebook_coral) Remark 2158 - Unnecessary/redundant use of Offset operator ^ | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1232: Offset (0x80), | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1263: Name (ECMD, ResourceTemplate() | |
+(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.LPCB.EC0._CRS) | |
+(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1862: Method (DTRP, 2, Serialized) | |
+(chromebook_coral) Remark 2146 - Method Argument is never used ^ (Arg0) | |
+(chromebook_coral) Image 'rom' is missing external blobs and is non-functional: intel-descriptor intel-ifwi intel-fsp-m intel-fsp-s intel-vbt | |
+(chromebook_coral som-db5800-som-6867 conga-qeval20-qa3-e3845 conga-qeval20-qa3-e3845-internal-uart theadorable-x86-conga-qa3-e3845 dfi-bt700-q7x-151 theadorable-x86-dfi-bt700 bayleybay minnowmax cherryhill chromebook_samus chromebook_samus_tpl chromebook_link chromebook_link64 chromebox_panther) /binman/rom/intel-descriptor (descriptor.bin): | |
+(chromebook_coral) /binman/rom/intel-ifwi (fitimage.bin): | |
+(chromebook_coral) /binman/rom/intel-fsp-m (fsp_m.bin): | |
+(chromebook_coral) /binman/rom/intel-fsp-s (fsp_s.bin): | |
+(chromebook_coral cherryhill) /binman/rom/intel-vbt (vbt.bin): | |
+(som-db5800-som-6867 conga-qeval20-qa3-e3845 conga-qeval20-qa3-e3845-internal-uart theadorable-x86-conga-qa3-e3845 theadorable-x86-conga-qa3-e3845-pcie-x4 dfi-bt700-q7x-151 theadorable-x86-dfi-bt700 bayleybay minnowmax) Image 'rom' is missing external blobs and is non-functional: intel-descriptor intel-me intel-vga intel-fsp | |
+(som-db5800-som-6867 conga-qeval20-qa3-e3845 conga-qeval20-qa3-e3845-internal-uart theadorable-x86-conga-qa3-e3845 theadorable-x86-conga-qa3-e3845-pcie-x4 dfi-bt700-q7x-151 theadorable-x86-dfi-bt700 bayleybay minnowmax cherryhill chromebook_samus chromebook_samus_tpl chromebook_link chromebook_link64 chromebox_panther) /binman/rom/intel-me (me.bin): | |
+(som-db5800-som-6867 conga-qeval20-qa3-e3845 conga-qeval20-qa3-e3845-internal-uart theadorable-x86-conga-qa3-e3845 theadorable-x86-conga-qa3-e3845-pcie-x4 dfi-bt700-q7x-151 theadorable-x86-dfi-bt700 bayleybay minnowmax chromebook_samus chromebook_samus_tpl chromebook_link chromebook_link64 chromebox_panther) /binman/rom/intel-vga (vga.bin): | |
+(som-db5800-som-6867 conga-qeval20-qa3-e3845 conga-qeval20-qa3-e3845-internal-uart theadorable-x86-conga-qa3-e3845 theadorable-x86-conga-qa3-e3845-pcie-x4 dfi-bt700-q7x-151 theadorable-x86-dfi-bt700 bayleybay minnowmax cherryhill cougarcanyon2 crownbay) /binman/rom/intel-fsp (fsp.bin): | |
+(theadorable-x86-conga-qa3-e3845-pcie-x4) /binman/rom/intel-descriptor (descriptor-pcie-x4.bin): | |
+(cherryhill) Image 'rom' is missing external blobs and is non-functional: intel-descriptor intel-me intel-fsp intel-vbt | |
+(chromebook_samus chromebook_samus_tpl) Image 'rom' is missing external blobs and is non-functional: intel-descriptor intel-me intel-refcode intel-vga intel-mrc | |
+(chromebook_samus chromebook_samus_tpl) /binman/rom/intel-refcode (refcode.bin): | |
+(chromebook_samus chromebook_samus_tpl chromebook_link chromebook_link64 chromebox_panther) /binman/rom/intel-mrc (mrc.bin): | |
+(chromebook_link chromebook_link64 chromebox_panther) Image 'rom' is missing external blobs and is non-functional: intel-descriptor intel-me intel-vga intel-mrc | |
+(cougarcanyon2) Image 'rom' is missing external blobs and is non-functional: intel-fsp | |
+(galileo) Image 'rom' is missing external blobs and is non-functional: intel-cmc | |
+(galileo) /binman/rom/intel-cmc (rmu.bin): | |
+(crownbay) Image 'rom' is missing external blobs and is non-functional: intel-cmc intel-fsp | |
+(crownbay) /binman/rom/intel-cmc (cmc.bin): | |
w+(x240 turris_mox mvebu_ac5_rd eDPU mvebu_db-88f3720 mvebu_espressobin-88f3720 uDPU clearfog_gt_8k mvebu_db_armada8k mvebu_mcbin-88f8040 mvebu_puzzle-m801-88f8040 mvebu_crb_cn9130 mvebu_db_cn9130) arch/arm/dts/ac5-98dx35xx-atl-x240.dtb: Warning (interrupts_property): /soc/internal-regs@7f000000/gpio@18100: Missing interrupt-controller or interrupt-map property | |
w+(x240 turris_mox mvebu_ac5_rd eDPU mvebu_db-88f3720 mvebu_espressobin-88f3720 uDPU clearfog_gt_8k mvebu_db_armada8k mvebu_mcbin-88f8040 mvebu_puzzle-m801-88f8040 mvebu_crb_cn9130 mvebu_db_cn9130) arch/arm/dts/ac5-98dx35xx-atl-x240.dtb: Warning (interrupts_property): /soc/internal-regs@7f000000/gpio@18100: Missing #interrupt-cells in interrupt-parent | |
w+(xilinx_zynqmp_kria xilinx_zynqmp_mini xilinx_zynqmp_mini_emmc0 xilinx_zynqmp_mini_emmc1 xilinx_zynqmp_mini_nand xilinx_zynqmp_mini_nand_single xilinx_zynqmp_mini_qspi xilinx_zynqmp_virt) arch/arm/dts/zynqmp-mini-nand.dtb: Warning (reg_format): /amba/nand@ff100000/nand@0:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) | |
w+(ge_b1x5v2) arch/arm/dts/imx6dl-b1x5v2.dtb: Warning (pwms_property): /backlight:pwms: property size (12) too small for cell size 3 | |
w+(smdkc100) arch/arm/dts/s5pc1xx-smdkc100.dtb: Warning (interrupts_property): /serial@ec000000: Missing interrupt-parent | |
w+(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (reg_format): /memory/ocram@20240000:reg: property has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1) | |
w+(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (reg_format): /memory/sdram@80000000:reg: property has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1) | |
w+(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (avoid_default_addr_size): /memory/ocram@20240000: Relying on default #address-cells value | |
w+(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (avoid_default_addr_size): /memory/ocram@20240000: Relying on default #size-cells value | |
w+(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (avoid_default_addr_size): /memory/sdram@80000000: Relying on default #address-cells value | |
w+(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (avoid_default_addr_size): /memory/sdram@80000000: Relying on default #size-cells value | |
w+(sandbox64) arch/sandbox/dts/sandbox64.dtb: Warning (ranges_format): /reserved-memory:ranges: empty "ranges" property but its #address-cells (1) differs from / (2) | |
w+(sandbox64) arch/sandbox/dts/sandbox64.dtb: Warning (ranges_format): /reserved-memory:ranges: empty "ranges" property but its #size-cells (1) differs from / (2) | |
30: temp: mx6sabresd: bump up the size limit of the board | |
aarch64: x240 turris_mox mvebu_ac5_rd eDPU mvebu_db-88f3720 mvebu_espressobin-88f3720 uDPU clearfog_gt_8k mvebu_db_armada8k mvebu_mcbin-88f8040 mvebu_puzzle-m801-88f8040 mvebu_crb_cn9130 mvebu_db_cn9130 + imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som | |
arm: brsmarc1 ge_b1x5v2 smdkc100 imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk | |
sandbox: sandbox64 | |
-(imx8mm_beacon_fspi imx8mn_beacon_fspi imx8mm_evk_fspi) Image 'image' is missing external blobs and is non-functional: fspi_conf_block ddr-1d-imem-fw ddr-1d-dmem-fw ddr-2d-imem-fw ddr-2d-dmem-fw atf-blob | |
-(imx8mm_beacon_fspi imx8mn_beacon_fspi imx8mm_evk_fspi) /binman/section/fspi_conf_block (fspi_header.bin): | |
-(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) WARNING 'mx93a1-ahab-container.img' not found, resulting binary may be not-functional | |
-(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) WARNING 'u-boot.bin' not found, resulting binary may be not-functional | |
-(brsmarc1) cp: cannot stat 'MLO.byteswap': No such file or directory | |
-(socfpga_secu1) 65536 bytes (66 kB, 64 KiB) copied, 0.0039644 s, 16.5 MB/s | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 14: Offset (0x00), | |
-(chromebook_coral) Remark 2158 - Unnecessary/redundant use of Offset operator ^ | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 409: OperationRegion (PDW0, SystemMemory, Local0, 4) | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPC0) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 418: OperationRegion (PDW0, SystemMemory, Local0, 4) | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SPC0) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 427: OperationRegion (PDW1, SystemMemory, Local0, 4) | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GPC1) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 436: OperationRegion (PDW1, SystemMemory, Local0, 4) | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SPC1) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 459: OperationRegion (SHO0, SystemMemory, Or ( Or | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.GHO) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 469: OperationRegion (SHO0, SystemMemory, Or ( Or | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.SHO) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 942: Name (WSHC, Package() { VBT3 }) | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.CHSW) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 947: Name (DIW1, "") | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.FWID) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 949: Name (DIWF, Package() { DIW1 }) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 954: Name (DIR1, "") | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.FRID) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 956: Name (DIRF, Package() { DIR1 }) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 961: Name (DIW0, "") | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.HWID) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 963: Name (DIWH, Package() { DIW0 }) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 968: Name (FNIB, Package() { VBT0, VBT1, VBT2, VBT7, VBT8 }) | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.BINF) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 977: Name(VNBV, Package() { | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.VBNV) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 985: Name(TAD0,"") | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.VDAT) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 987: Name (TADV, Package() { TAD0 }) | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.VDAT) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 992: Name(PAMF, Package() { VBT9 }) | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.FMAP) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 997: Name(HASH, Package() { MEHH }) | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.MECK) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1002: Name(TSLM, Package() { "CHSW", "FWID", "HWID", "FRID", "BINF", | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\CRHW.MLST) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1137: Offset (0x00), | |
-(chromebook_coral) Remark 2158 - Unnecessary/redundant use of Offset operator ^ | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1182: Offset (0x0e), | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1190: Offset (0x00), | |
-(chromebook_coral) Remark 2158 - Unnecessary/redundant use of Offset operator ^ | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1232: Offset (0x80), | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1263: Name (ECMD, ResourceTemplate() | |
-(chromebook_coral) Remark 2173 - ^ Creation of named objects within a method is highly inefficient, use globals or method local variables instead (\_SB.PCI0.LPCB.EC0._CRS) | |
-(chromebook_coral) board/google/chromebook_coral/dsdt_generated.asl.tmp 1862: Method (DTRP, 2, Serialized) | |
-(chromebook_coral) Remark 2146 - Method Argument is never used ^ (Arg0) | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) binman: Error 1 running 'mkimage -d ./mkimage.spl.mkimage -n spl/u-boot-spl.cfgout -T imx8image -e 0x2049A000 ./mkimage-out.spl.mkimage': Fail open first container file mx93a1-ahab-container.img | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) make[1]: *** [Makefile:1126: .binman_stamp] Error 1 | |
+(imx93_11x11_evk imx93_11x11_evk_ld imx93-phyboard-segin imx93_var_som) make: *** [Makefile:177: sub-make] Error 2 | |
+(socfpga_secu1) 65536 bytes (66 kB, 64 KiB) copied, 0.00477904 s, 13.7 MB/s | |
w-(x240 turris_mox mvebu_ac5_rd eDPU mvebu_db-88f3720 mvebu_espressobin-88f3720 uDPU clearfog_gt_8k mvebu_db_armada8k mvebu_mcbin-88f8040 mvebu_puzzle-m801-88f8040 mvebu_crb_cn9130 mvebu_db_cn9130) arch/arm/dts/ac5-98dx35xx-atl-x240.dtb: Warning (interrupts_property): /soc/internal-regs@7f000000/gpio@18100: Missing interrupt-controller or interrupt-map property | |
w-(x240 turris_mox mvebu_ac5_rd eDPU mvebu_db-88f3720 mvebu_espressobin-88f3720 uDPU clearfog_gt_8k mvebu_db_armada8k mvebu_mcbin-88f8040 mvebu_puzzle-m801-88f8040 mvebu_crb_cn9130 mvebu_db_cn9130) arch/arm/dts/ac5-98dx35xx-atl-x240.dtb: Warning (interrupts_property): /soc/internal-regs@7f000000/gpio@18100: Missing #interrupt-cells in interrupt-parent | |
w-(xilinx_zynqmp_kria xilinx_zynqmp_mini xilinx_zynqmp_mini_emmc0 xilinx_zynqmp_mini_emmc1 xilinx_zynqmp_mini_nand xilinx_zynqmp_mini_nand_single xilinx_zynqmp_mini_qspi xilinx_zynqmp_virt) arch/arm/dts/zynqmp-mini-nand.dtb: Warning (reg_format): /amba/nand@ff100000/nand@0:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) | |
w-(ge_b1x5v2) arch/arm/dts/imx6dl-b1x5v2.dtb: Warning (pwms_property): /backlight:pwms: property size (12) too small for cell size 3 | |
w-(smdkc100) arch/arm/dts/s5pc1xx-smdkc100.dtb: Warning (interrupts_property): /serial@ec000000: Missing interrupt-parent | |
w-(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (reg_format): /memory/ocram@20240000:reg: property has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1) | |
w-(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (reg_format): /memory/sdram@80000000:reg: property has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1) | |
w-(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (avoid_default_addr_size): /memory/ocram@20240000: Relying on default #address-cells value | |
w-(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (avoid_default_addr_size): /memory/ocram@20240000: Relying on default #size-cells value | |
w-(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (avoid_default_addr_size): /memory/sdram@80000000: Relying on default #address-cells value | |
w-(imxrt1020-evk imxrt1050-evk imxrt1050-evk_fspi imxrt1170-evk) arch/arm/dts/imxrt1170-evk.dtb: Warning (avoid_default_addr_size): /memory/sdram@80000000: Relying on default #size-cells value | |
w-(sandbox64) arch/sandbox/dts/sandbox64.dtb: Warning (ranges_format): /reserved-memory:ranges: empty "ranges" property but its #address-cells (1) differs from / (2) | |
w-(sandbox64) arch/sandbox/dts/sandbox64.dtb: Warning (ranges_format): /reserved-memory:ranges: empty "ranges" property but its #size-cells (1) differs from / (2) | |
aarch64: (for 415/415 boards) all +245.3 bss -841.3 data +882.9 rodata +4.3 spl/u-boot-spl:all +0.7 spl/u-boot-spl:data +3.9 spl/u-boot-spl:rodata -0.5 spl/u-boot-spl:text -2.7 text +199.3 | |
imx8mp_dhcom_pdk3: all +2749 bss -824 data +848 rodata +605 text +2120 | |
u-boot: add: 35/-31, grow: 42/-17 bytes: 8910/-6657 (2253) | |
function old new delta | |
static.wget_handler - 1372 +1372 | |
__efi_add_memory_map_pg - 1044 +1044 | |
do_bdinfo 12 852 +840 | |
lmb - 800 +800 | |
zstd_decompress 5524 6192 +668 | |
ZSTD_loadDEntropy - 532 +532 | |
static.wget_send_stored - 500 +500 | |
initr_lmb - 252 +252 | |
static.lmb_add_region_flags 568 808 +240 | |
static.__lmb_free - 232 +232 | |
static.ML_base 212 424 +212 | |
static.efi_get_memory_map_ext 60 236 +176 | |
static.wget_timeout_handler - 148 +148 | |
static.LL_base 144 288 +144 | |
static._fs_read 164 304 +140 | |
static.OF_base 128 256 +128 | |
efi_add_memory_map_pg - 116 +116 | |
lmb_mem_map_update_sync - 104 +104 | |
lmb_reserve_flags - 100 +100 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_add_memory - 92 +92 | |
efi_open_volume - 72 +72 | |
lmb_remove_region - 68 +68 | |
static.ML_bits 53 106 +53 | |
static.lmb_map_update_notify - 52 +52 | |
net_loop 1976 2028 +52 | |
tftp_start 1400 1444 +44 | |
is_addr_in_ram - 44 +44 | |
efi_file_open 60 100 +40 | |
static.LL_bits 36 72 +36 | |
static.ping_timeout_handler - 32 +32 | |
static.OF_bits 32 64 +32 | |
efi_file_open_ex 108 140 +32 | |
lmb_alloc_base 260 288 +28 | |
on_ip6addr 160 184 +24 | |
static.efi_mem - 16 +16 | |
fdt_get_property_by_offset_ 84 100 +16 | |
fdt_get_mem_rsv 92 108 +16 | |
efi_file_write 60 76 +16 | |
efi_file_read 60 76 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
tftp_send 788 800 +12 | |
static.mtd_probe_devices 1772 1784 +12 | |
ndisc_request 428 440 +12 | |
fdt_next_property_offset 44 56 +12 | |
fdt_first_property_offset 44 56 +12 | |
efi_dt_fixup 320 332 +12 | |
static.wget_load_size - 8 +8 | |
static.time_handler - 8 +8 | |
static.time_delta - 8 +8 | |
static.image_url - 8 +8 | |
on_serverip6 56 64 +8 | |
on_gatewayip6 56 64 +8 | |
nextprop_ 92 100 +8 | |
lmb_get_free_size 136 144 +8 | |
ip6_add_hdr 100 108 +8 | |
init_sequence_r 360 368 +8 | |
fdt_supernode_atdepth_offset 192 200 +8 | |
fdt_get_string 268 276 +8 | |
fdt_get_name 156 164 +8 | |
efi_file_getpos 64 72 +8 | |
efi_file_flush_ex 92 100 +8 | |
efi_file_flush 64 72 +8 | |
tcp_activity_count - 4 +4 | |
tcp_ack_edge - 4 +4 | |
static.wget_timeout_count - 4 +4 | |
static.retry_tcp_seq_num - 4 +4 | |
static.retry_tcp_ack_num - 4 +4 | |
static.retry_len - 4 +4 | |
static.ping6_timeout - 4 +4 | |
static.our_port - 4 +4 | |
static.dummy_handler 4 8 +4 | |
static.current_wget_state - 4 +4 | |
rng_getinfo 160 164 +4 | |
dhcp6_start 192 196 +4 | |
static.retry_action - 1 +1 | |
retry_action 1 - -1 | |
wget_timeout_count 4 - -4 | |
static.tcp_activity_count 4 - -4 | |
static.tcp_ack_edge 4 - -4 | |
retry_tcp_seq_num 4 - -4 | |
retry_tcp_ack_num 4 - -4 | |
retry_len 4 - -4 | |
ping6_timeout 4 - -4 | |
our_port 4 - -4 | |
lmb_reserve 12 8 -4 | |
image_setup_libfdt 944 940 -4 | |
getrng 192 188 -4 | |
current_wget_state 4 - -4 | |
boot_fdt_reserve_region 104 100 -4 | |
wget_load_size 8 - -8 | |
time_handler 8 - -8 | |
time_delta 8 - -8 | |
image_url 8 - -8 | |
efi_install_fdt 644 636 -8 | |
do_booti 560 552 -8 | |
dhcp6_add_option 592 580 -12 | |
boot_prep_linux 140 128 -12 | |
static.FSE_decodeSymbolFast 80 64 -16 | |
static.FSE_decodeSymbol 80 64 -16 | |
efi_mem 16 - -16 | |
efi_guid_fdt 16 - -16 | |
boot_fdt_add_mem_rsv_regions 464 448 -16 | |
load_serial 912 892 -20 | |
boot_relocate_fdt 548 524 -24 | |
ping_timeout_handler 32 - -32 | |
bootm_run_states 3216 3152 -64 | |
static.lmb_remove_region 68 - -68 | |
static.efi_open_volume 72 - -72 | |
inflate 6044 5964 -80 | |
wget_init_load_size 88 - -88 | |
tftp_init_load_addr 100 - -100 | |
static.lmb_free 188 64 -124 | |
lmb_init_and_reserve 128 - -128 | |
wget_timeout_handler 148 - -148 | |
efi_get_memory_map 228 - -228 | |
arch_lmb_reserve 236 - -236 | |
static.fs_read_lmb_check 240 - -240 | |
static.efi_lmb_reserve 276 - -276 | |
wget_send_stored 476 - -476 | |
images 1120 320 -800 | |
bdinfo_print_all 872 - -872 | |
static.efi_add_memory_map_pg 1044 - -1044 | |
wget_handler 1332 - -1332 | |
imx8mm-cl-iot-gate: all +2503 bss -800 data +832 rodata +343 text +2128 | |
u-boot: add: 103/-93, grow: 46/-35 bytes: 27231/-51246 (-24015) | |
function old new delta | |
static.composite_setup - 2520 +2520 | |
static.efi_st_tcg2_execute - 1632 +1632 | |
static.parse_stream_outer - 1628 +1628 | |
sha512_block_fn - 1212 +1212 | |
__efi_add_memory_map_pg - 1044 +1044 | |
ax88179_eth_start - 924 +924 | |
do_bdinfo 12 876 +864 | |
lmb - 800 +800 | |
static.expected_pcrs - 768 +768 | |
img - 744 +744 | |
static.mmc_startup_v4 - 716 +716 | |
static.efi_st_tcg2_teardown - 716 +716 | |
static.insert_var_value_sub - 668 +668 | |
static.g_dnl_bind - 552 +552 | |
static.composite_bind - 520 +520 | |
gpio_get_description - 520 +520 | |
static.file_get - 500 +500 | |
static.sd_get_capabilities - 436 +436 | |
static.ext4fs_update - 424 +424 | |
static.efi_disconnect_all_drivers - 396 +396 | |
static.efi_uninstall_protocol - 328 +328 | |
static.set_string - 300 +300 | |
static.new_string - 300 +300 | |
static.update_package_list - 292 +292 | |
static.boot_variable_test - 288 +288 | |
static.composite_unbind - 276 +276 | |
static.list_package_lists - 272 +272 | |
static.get_languages - 264 +264 | |
delete_char - 264 +264 | |
initr_lmb - 260 +260 | |
get_arg - 248 +248 | |
static.do_i2c_read - 244 +244 | |
static.lmb_add_region_flags 568 808 +240 | |
pinconfig_post_bind - 240 +240 | |
static.clk_mux_set_parent - 236 +236 | |
static.get_string 220 452 +232 | |
static.__lmb_free - 232 +232 | |
static.get_keyboard_layout - 224 +224 | |
static.find_keyboard_layouts - 220 +220 | |
static.notify 496 712 +216 | |
static.new_package_list - 200 +200 | |
match_entry - 180 +180 | |
static.mmc_read_and_compare_ext_csd - 168 +168 | |
static.get_secondary_languages - 156 +156 | |
static.tftp_start 960 1112 +152 | |
asix_read_cmd - 152 +152 | |
static._fs_read 164 304 +140 | |
static.mmc_set_capacity - 136 +136 | |
static.fixed_clock_regulator_set_enable - 136 +136 | |
static.composite_suspend - 128 +128 | |
static.composite_resume - 124 +124 | |
do_efi_show_memmap 344 468 +124 | |
static.mmc_send_op_cond_iter - 116 +116 | |
static.efi_add_memory_map_pg - 116 +116 | |
static.get_package_list_handle - 108 +108 | |
lmb_mem_map_update_sync - 104 +104 | |
static.register_package_notify - 100 +100 | |
lmb_reserve_flags - 100 +100 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_add_memory - 84 +84 | |
static.remove_package_list - 80 +80 | |
static.mmc_go_idle - 80 +80 | |
static.composite_disconnect - 80 +80 | |
static.export_package_lists - 72 +72 | |
static.efi_open_volume - 72 +72 | |
lmb_remove_region - 68 +68 | |
android_image_get_kernel_addr - 68 +68 | |
static.g_dnl_string_defs - 64 +64 | |
static.set_keyboard_layout - 60 +60 | |
static.i2c_get_cur_bus - 56 +56 | |
static.lmb_map_update_notify - 52 +52 | |
static.g_dnl_unbind - 52 +52 | |
is_addr_in_ram - 44 +44 | |
context 16 56 +40 | |
static.efi_firmware_get_image_info 404 440 +36 | |
ax88179_free_pkt - 36 +36 | |
static.unregister_package_notify - 32 +32 | |
static.efi_gop_guid - 32 +32 | |
imx8m_clk_composite_flags 480 512 +32 | |
guid_device_path 16 48 +32 | |
guid2 - 32 +32 | |
ext4fs_init 1488 1520 +32 | |
static.clk_gate_enable - 28 +28 | |
static.clk_gate_disable - 28 +28 | |
lmb_alloc_base 260 288 +28 | |
pos - 24 +24 | |
static.efi_cout_query_mode 128 148 +20 | |
efi_query_capsule_caps 88 108 +20 | |
cmpkey - 20 +20 | |
static.device_desc - 18 +18 | |
static.efi_register_notify_events - 16 +16 | |
handle2 - 16 +16 | |
guid1 - 16 +16 | |
efi_guid_fdt - 16 +16 | |
efi_file_info_guid - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
static.sha512_base_do_update 232 244 +12 | |
static.file_peek - 12 +12 | |
ext4fs_close 76 88 +12 | |
efi_get_variable_mem 500 512 +12 | |
efi_capsule_update_firmware 1232 1244 +12 | |
tab_seq - 9 +9 | |
static.tftp_load_size - 8 +8 | |
static.pcrs - 8 +8 | |
static.orig_smbios_table - 8 +8 | |
static.is_device_path_multi_instance 84 92 +8 | |
static.image_handle 32 40 +8 | |
static.i2c_cur_bus - 8 +8 | |
static.get_device_path_size 56 64 +8 | |
static.efi_tcg2_event - 8 +8 | |
static.efi_open_protocol 280 288 +8 | |
static.efi_cout_set_mode 96 104 +8 | |
static.efi_cout_set_cursor_position 168 176 +8 | |
static.efi_cout_set_attribute 104 112 +8 | |
static.efi_convert_device_node_to_text 68 76 +8 | |
static.efi_cin_unregister_key_notify 120 128 +8 | |
static.duplicate_device_path 44 52 +8 | |
static.dmi_addr - 8 +8 | |
static.create_device_node 112 120 +8 | |
static.composite - 8 +8 | |
static.append_device_path 56 64 +8 | |
static.append_device_node 52 60 +8 | |
static.app_gd - 8 +8 | |
part_info - 8 +8 | |
interface1 - 8 +8 | |
init_sequence_r 360 368 +8 | |
inflate 5956 5964 +8 | |
image - 8 +8 | |
i2c_get_chip 272 280 +8 | |
handle1 - 8 +8 | |
ext4fs_put_metadata 212 220 +8 | |
ext4fs_log_journal 244 252 +8 | |
event - 8 +8 | |
efi_unload_image 200 208 +8 | |
efi_protocol_open 440 448 +8 | |
efi_dp_str 52 60 +8 | |
efi_cin_reset 56 64 +8 | |
bitmap - 8 +8 | |
symlinknest - 4 +4 | |
static.last_return_code - 4 +4 | |
static.dfu_free_entity_sf - 4 +4 | |
static.ctrlc_was_pressed - 4 +4 | |
getrng 188 192 +4 | |
fsl_esdhc_of_to_plat 464 468 +4 | |
erase_seq - 4 +4 | |
efi_start_image 2468 2472 +4 | |
efi_launch_capsules 2292 2296 +4 | |
blk_create_device 400 404 +4 | |
static.symlinknest 4 - -4 | |
static.hexport_r 640 636 -4 | |
static.execute 35540 35536 -4 | |
read_allocated_block 2204 2200 -4 | |
lmb_reserve 12 8 -4 | |
last_return_code 4 - -4 | |
image_setup_libfdt 1084 1080 -4 | |
efi_load_image 2508 2504 -4 | |
dfu_free_entity_sf 4 - -4 | |
ctrlc_was_pressed 4 - -4 | |
cli_readline_into_buffer 2432 2428 -4 | |
boot_fdt_reserve_region 104 100 -4 | |
tftp_load_size 8 - -8 | |
static.part_info 8 - -8 | |
static.interface1 20 12 -8 | |
static.image 56 48 -8 | |
static.handle1 24 16 -8 | |
static.fdt_rw_probe_ 108 100 -8 | |
static.event 24 16 -8 | |
static.efi_uc_stop 284 276 -8 | |
static.bitmap 8 - -8 | |
pcrs 8 - -8 | |
orig_smbios_table 8 - -8 | |
image_handle 16 8 -8 | |
i2c_cur_bus 8 - -8 | |
fdt_open_into 420 412 -8 | |
efi_var_mem_ins 300 292 -8 | |
efi_tcg2_event 8 - -8 | |
efi_install_fdt 536 528 -8 | |
do_bootm_vxworks 572 564 -8 | |
do_booti 556 548 -8 | |
dmi_addr 8 - -8 | |
composite 8 - -8 | |
blk_post_probe 280 272 -8 | |
app_gd 8 - -8 | |
file_peek 12 - -12 | |
fdt_delprop 120 108 -12 | |
fdt_del_node 124 112 -12 | |
efi_deserialize_load_option 264 252 -12 | |
boot_prep_linux 140 128 -12 | |
static.handle2 16 - -16 | |
static.guid1 48 32 -16 | |
efi_register_notify_events 16 - -16 | |
efi_guid_event_group_return_to_efibootmgr 16 - -16 | |
boot_fdt_add_mem_rsv_regions 280 264 -16 | |
device_desc 18 - -18 | |
static.cmpkey 20 - -20 | |
load_serial 912 892 -20 | |
static.pos 24 - -24 | |
fdt_del_mem_rsv 112 88 -24 | |
boot_relocate_fdt 552 528 -24 | |
efi_dt_fixup 340 312 -28 | |
clk_gate_enable 28 - -28 | |
clk_gate_disable 28 - -28 | |
unregister_package_notify 32 - -32 | |
static.guid_device_path 32 - -32 | |
static.guid2 32 - -32 | |
efi_gop_guid 32 - -32 | |
static.ax88179_free_pkt 36 - -36 | |
static.context 40 - -40 | |
g_dnl_unbind 52 - -52 | |
i2c_get_cur_bus 56 - -56 | |
set_keyboard_layout 60 - -60 | |
g_dnl_string_defs 64 - -64 | |
bootm_run_states 2824 2760 -64 | |
static.lmb_remove_region 68 - -68 | |
static.android_image_get_kernel_addr 68 - -68 | |
export_package_lists 72 - -72 | |
efi_open_volume 72 - -72 | |
remove_package_list 80 - -80 | |
mmc_go_idle 80 - -80 | |
composite_disconnect 80 - -80 | |
register_package_notify 100 - -100 | |
get_package_list_handle 108 - -108 | |
mmc_send_op_cond_iter 116 - -116 | |
static.lmb_free 188 64 -124 | |
lmb_init_and_reserve 124 - -124 | |
composite_resume 124 - -124 | |
composite_suspend 128 - -128 | |
mmc_set_capacity 136 - -136 | |
fixed_clock_regulator_set_enable 136 - -136 | |
static.efi_lmb_reserve 152 - -152 | |
static.asix_read_cmd 152 - -152 | |
get_secondary_languages 156 - -156 | |
mmc_read_and_compare_ext_csd 168 - -168 | |
efi_get_memory_map_alloc 168 - -168 | |
static.match_entry 180 - -180 | |
new_package_list 200 - -200 | |
static.tftp_init_load_addr 212 - -212 | |
notify 216 - -216 | |
find_keyboard_layouts 220 - -220 | |
get_keyboard_layout 224 - -224 | |
get_string 232 - -232 | |
clk_mux_set_parent 236 - -236 | |
static.pinconfig_post_bind 240 - -240 | |
static.fs_read_lmb_check 240 - -240 | |
arch_lmb_reserve 240 - -240 | |
do_i2c_read 244 - -244 | |
static.get_arg 248 - -248 | |
static.delete_char 264 - -264 | |
get_languages 264 - -264 | |
list_package_lists 272 - -272 | |
composite_unbind 276 - -276 | |
boot_variable_test 288 - -288 | |
update_package_list 292 - -292 | |
set_string 300 - -300 | |
new_string 300 - -300 | |
efi_uninstall_protocol 328 - -328 | |
efi_disconnect_all_drivers 396 - -396 | |
ext4fs_update 424 - -424 | |
sd_get_capabilities 436 - -436 | |
file_get 500 - -500 | |
static.gpio_get_description 520 - -520 | |
composite_bind 520 - -520 | |
g_dnl_bind 552 - -552 | |
insert_var_value_sub 668 - -668 | |
mmc_startup_v4 716 - -716 | |
efi_st_tcg2_teardown 716 - -716 | |
expected_pcrs 768 - -768 | |
images 1120 320 -800 | |
bdinfo_print_all 896 - -896 | |
static.ax88179_eth_start 924 - -924 | |
efi_add_memory_map_pg 1044 - -1044 | |
static.sha512_block_fn 1212 - -1212 | |
parse_stream_outer 1628 - -1628 | |
efi_st_tcg2_execute 1632 - -1632 | |
composite_setup 2520 - -2520 | |
static.img 55624 30264 -25360 | |
imx8mp_evk : all +2176 bss -784 data +840 text +2120 | |
u-boot: add: 17/-12, grow: 7/-15 bytes: 4844/-4632 (212) | |
function old new delta | |
__efi_add_memory_map_pg - 1044 +1044 | |
do_bdinfo 12 876 +864 | |
lmb - 800 +800 | |
initr_lmb - 260 +260 | |
static.lmb_add_region_flags 568 808 +240 | |
static.__lmb_free - 232 +232 | |
static.efi_get_memory_map_ext 60 236 +176 | |
static.efi_net_initialize - 164 +164 | |
static.tftp_start 960 1112 +152 | |
static._fs_read 164 304 +140 | |
static.efi_net_reset - 128 +128 | |
lmb_mem_map_update_sync - 104 +104 | |
lmb_reserve_flags - 100 +100 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_add_memory - 84 +84 | |
lmb_remove_region - 68 +68 | |
static.lmb_map_update_notify - 52 +52 | |
is_addr_in_ram - 44 +44 | |
lmb_alloc_base 260 288 +28 | |
static.efi_mem - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
static.tftp_load_size - 8 +8 | |
init_sequence_r 360 368 +8 | |
lmb_reserve 12 8 -4 | |
image_setup_libfdt 536 532 -4 | |
boot_fdt_reserve_region 104 100 -4 | |
tftp_load_size 8 - -8 | |
efi_install_fdt 652 644 -8 | |
efi_dt_fixup 320 312 -8 | |
do_bootm_vxworks 572 564 -8 | |
do_booti 556 548 -8 | |
boot_prep_linux 140 128 -12 | |
efi_mem 16 - -16 | |
boot_fdt_add_mem_rsv_regions 464 448 -16 | |
load_serial 912 892 -20 | |
boot_relocate_fdt 552 528 -24 | |
bootm_run_states 3212 3148 -64 | |
static.lmb_remove_region 68 - -68 | |
static.lmb_free 188 64 -124 | |
lmb_init_and_reserve 124 - -124 | |
efi_net_reset 128 - -128 | |
efi_net_initialize 164 - -164 | |
static.tftp_init_load_addr 212 - -212 | |
efi_get_memory_map 228 - -228 | |
static.fs_read_lmb_check 240 - -240 | |
arch_lmb_reserve 240 - -240 | |
static.efi_lmb_reserve 276 - -276 | |
images 1120 320 -800 | |
bdinfo_print_all 896 - -896 | |
efi_add_memory_map_pg 1044 116 -928 | |
imx8mq_evk : all +2160 bss -800 data +840 text +2120 | |
u-boot: add: 14/-9, grow: 7/-15 bytes: 4536/-4324 (212) | |
function old new delta | |
__efi_add_memory_map_pg - 1044 +1044 | |
do_bdinfo 12 876 +864 | |
lmb - 800 +800 | |
initr_lmb - 260 +260 | |
static.lmb_add_region_flags 568 808 +240 | |
static.__lmb_free - 232 +232 | |
static.efi_get_memory_map_ext 60 236 +176 | |
static.tftp_start 960 1112 +152 | |
static._fs_read 164 304 +140 | |
lmb_mem_map_update_sync - 104 +104 | |
lmb_reserve_flags - 100 +100 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_add_memory - 84 +84 | |
lmb_remove_region - 68 +68 | |
static.lmb_map_update_notify - 52 +52 | |
is_addr_in_ram - 44 +44 | |
lmb_alloc_base 260 288 +28 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
static.tftp_load_size - 8 +8 | |
init_sequence_r 280 288 +8 | |
lmb_reserve 12 8 -4 | |
image_setup_libfdt 536 532 -4 | |
boot_fdt_reserve_region 104 100 -4 | |
tftp_load_size 8 - -8 | |
efi_install_fdt 652 644 -8 | |
efi_dt_fixup 320 312 -8 | |
do_bootm_vxworks 572 564 -8 | |
do_booti 580 572 -8 | |
boot_prep_linux 140 128 -12 | |
boot_fdt_add_mem_rsv_regions 464 448 -16 | |
load_serial 912 892 -20 | |
boot_relocate_fdt 552 528 -24 | |
bootm_run_states 2476 2412 -64 | |
static.lmb_remove_region 68 - -68 | |
static.lmb_free 188 64 -124 | |
lmb_init_and_reserve 124 - -124 | |
static.tftp_init_load_addr 212 - -212 | |
efi_get_memory_map 228 - -228 | |
static.fs_read_lmb_check 240 - -240 | |
arch_lmb_reserve 240 - -240 | |
static.efi_lmb_reserve 276 - -276 | |
images 1120 320 -800 | |
bdinfo_print_all 896 - -896 | |
static.efi_add_memory_map_pg 1044 116 -928 | |
imx8mq_reform2 : all +2160 bss -800 data +840 text +2120 | |
u-boot: add: 14/-9, grow: 7/-15 bytes: 4536/-4324 (212) | |
function old new delta | |
__efi_add_memory_map_pg - 1044 +1044 | |
do_bdinfo 12 876 +864 | |
lmb - 800 +800 | |
initr_lmb - 260 +260 | |
static.lmb_add_region_flags 568 808 +240 | |
static.__lmb_free - 232 +232 | |
static.efi_get_memory_map_ext 60 236 +176 | |
static.tftp_start 960 1112 +152 | |
static._fs_read 164 304 +140 | |
lmb_mem_map_update_sync - 104 +104 | |
lmb_reserve_flags - 100 +100 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_add_memory - 84 +84 | |
lmb_remove_region - 68 +68 | |
static.lmb_map_update_notify - 52 +52 | |
is_addr_in_ram - 44 +44 | |
lmb_alloc_base 260 288 +28 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
static.tftp_load_size - 8 +8 | |
init_sequence_r 272 280 +8 | |
lmb_reserve 12 8 -4 | |
image_setup_libfdt 536 532 -4 | |
boot_fdt_reserve_region 104 100 -4 | |
tftp_load_size 8 - -8 | |
efi_install_fdt 652 644 -8 | |
efi_dt_fixup 320 312 -8 | |
do_bootm_vxworks 572 564 -8 | |
do_booti 580 572 -8 | |
boot_prep_linux 140 128 -12 | |
boot_fdt_add_mem_rsv_regions 464 448 -16 | |
load_serial 912 892 -20 | |
boot_relocate_fdt 552 528 -24 | |
bootm_run_states 2476 2412 -64 | |
static.lmb_remove_region 68 - -68 | |
static.lmb_free 188 64 -124 | |
lmb_init_and_reserve 124 - -124 | |
static.tftp_init_load_addr 212 - -212 | |
efi_get_memory_map 228 - -228 | |
static.fs_read_lmb_check 240 - -240 | |
arch_lmb_reserve 240 - -240 | |
static.efi_lmb_reserve 276 - -276 | |
images 1120 320 -800 | |
bdinfo_print_all 896 - -896 | |
static.efi_add_memory_map_pg 1044 116 -928 | |
verdin-imx8mm : all +2112 bss -848 data +840 text +2120 | |
u-boot: add: 17/-12, grow: 7/-15 bytes: 4808/-4608 (200) | |
function old new delta | |
__efi_add_memory_map_pg - 1044 +1044 | |
do_bdinfo 12 876 +864 | |
lmb - 800 +800 | |
initr_lmb - 260 +260 | |
static.lmb_add_region_flags 568 808 +240 | |
static.__lmb_free - 232 +232 | |
static.efi_get_memory_map_ext 60 236 +176 | |
static._fs_read 164 332 +168 | |
static.tftp_start 932 1084 +152 | |
static.mmc_power_cycle - 136 +136 | |
lmb_mem_map_update_sync - 104 +104 | |
lmb_reserve_flags - 100 +100 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_add_memory - 84 +84 | |
static.clk_fixed_factor_get_rate - 68 +68 | |
lmb_remove_region - 68 +68 | |
static.lmb_map_update_notify - 52 +52 | |
is_addr_in_ram - 44 +44 | |
static.mmc_set_signal_voltage - 32 +32 | |
lmb_alloc_base 260 288 +28 | |
static.efi_mem - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
init_sequence_r 376 384 +8 | |
lmb_reserve 12 8 -4 | |
image_setup_libfdt 620 616 -4 | |
boot_fdt_reserve_region 104 100 -4 | |
efi_install_fdt 844 836 -8 | |
efi_dt_fixup 376 368 -8 | |
do_bootm_vxworks 572 564 -8 | |
do_booti 556 548 -8 | |
boot_prep_linux 140 128 -12 | |
efi_mem 16 - -16 | |
boot_fdt_add_mem_rsv_regions 464 448 -16 | |
load_serial 912 892 -20 | |
boot_relocate_fdt 552 528 -24 | |
mmc_set_signal_voltage 32 - -32 | |
bootm_run_states 3212 3148 -64 | |
static.lmb_remove_region 68 - -68 | |
clk_fixed_factor_get_rate 68 - -68 | |
static.lmb_free 188 64 -124 | |
lmb_init_and_reserve 124 - -124 | |
mmc_power_cycle 136 - -136 | |
tftp_init_load_addr 224 - -224 | |
efi_get_memory_map 228 - -228 | |
arch_lmb_reserve 240 - -240 | |
static.fs_read_lmb_check 268 - -268 | |
static.efi_lmb_reserve 276 - -276 | |
images 1120 320 -800 | |
bdinfo_print_all 896 - -896 | |
static.efi_add_memory_map_pg 1044 116 -928 | |
am64x_evm_a53 : all +392 bss -816 data +840 spl/u-boot-spl:all +150 spl/u-boot-spl:data +800 spl/u-boot-spl:rodata -98 spl/u-boot-spl:text -552 text +368 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3524/-3224 (300) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
spl-u-boot-spl: add: 2/-9, grow: 4/0 bytes: 1160/-908 (252) | |
function old new delta | |
lmb - 800 +800 | |
lmb_add_region_flags 568 808 +240 | |
lmb_add_memory - 68 +68 | |
tftp_start 924 952 +28 | |
lmb_add 8 24 +16 | |
lmb_get_free_size 136 144 +8 | |
lmb_reserve_flags 8 - -8 | |
lmb_reserve 12 - -12 | |
arch_lmb_reserve 16 - -16 | |
fdtdec_get_bool 32 - -32 | |
tftp_init_load_addr 100 - -100 | |
boot_fdt_reserve_region 100 - -100 | |
lmb_init_and_reserve 136 - -136 | |
arch_lmb_reserve_generic 208 - -208 | |
boot_fdt_add_mem_rsv_regions 296 - -296 | |
turing-rk1-rk3588: all +516 bss -576 data +848 text +244 | |
u-boot: add: 10/-6, grow: 10/-18 bytes: 3464/-3288 (176) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
tftp_init_load_addr 100 80 -20 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
kontron_sl28 : all +512 bss -704 data +848 text +368 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3508/-3208 (300) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
am62px_evm_a53 : all +456 bss -760 data +848 text +368 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3524/-3224 (300) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 272 280 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2008 1972 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
thunderx_88xx : all +453 bss -800 data +808 rodata +61 text +384 | |
u-boot: add: 7/-4, grow: 10/-12 bytes: 2188/-1820 (368) | |
function old new delta | |
lmb - 800 +800 | |
do_bdinfo 8 408 +400 | |
lmb_add_region_flags 568 808 +240 | |
lmb_alloc_base 76 268 +192 | |
event_notify - 168 +168 | |
initcall_run_list 132 212 +80 | |
image_setup_libfdt 300 368 +68 | |
lmb_reserve_common - 56 +56 | |
lmb_reserve_flags 8 48 +40 | |
initr_lmb - 36 +36 | |
lmb_free 216 248 +32 | |
lmb_add_memory - 20 +20 | |
lmb_add 8 24 +16 | |
event_type_name - 12 +12 | |
event_notify_null - 12 +12 | |
run_main_loop 16 24 +8 | |
init_sequence_r 232 240 +8 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 88 - -88 | |
lmb_init_and_reserve 100 - -100 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 436 - -436 | |
images 1120 320 -800 | |
j721e_evm_a72 : all +448 bss -776 data +848 text +376 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3524/-3216 (308) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 488 492 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2008 1972 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
j721e_sk_a72 : all +448 bss -776 data +848 text +376 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3524/-3216 (308) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 488 492 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2008 1972 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
hc2910_2aghd05 : all +409 bss -800 data +808 rodata +61 text +340 | |
u-boot: add: 7/-5, grow: 12/-11 bytes: 2380/-2056 (324) | |
function old new delta | |
lmb - 800 +800 | |
do_bdinfo 8 464 +456 | |
lmb_add_region_flags 568 808 +240 | |
lmb_alloc_base 76 268 +192 | |
event_notify - 168 +168 | |
initcall_run_list 132 212 +80 | |
do_load 588 660 +72 | |
lmb_add_memory - 68 +68 | |
image_setup_libfdt 300 368 +68 | |
lmb_reserve_common - 56 +56 | |
lmb_reserve_flags 8 48 +40 | |
initr_lmb - 36 +36 | |
lmb_free 216 248 +32 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
event_type_name - 12 +12 | |
event_notify_null - 12 +12 | |
run_main_loop 16 24 +8 | |
init_sequence_r 240 248 +8 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2056 2020 -36 | |
lmb_init_and_reserve_range 88 - -88 | |
lmb_init_and_reserve 136 - -136 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 492 - -492 | |
images 1120 320 -800 | |
mt7981_rfb : all +393 bss -3104 data +3112 rodata +61 text +324 | |
u-boot: add: 7/-5, grow: 12/-11 bytes: 4700/-4392 (308) | |
function old new delta | |
lmb - 3104 +3104 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
lmb_alloc_base 76 268 +192 | |
event_notify - 168 +168 | |
initcall_run_list 132 212 +80 | |
image_setup_libfdt 300 368 +68 | |
lmb_reserve_common - 56 +56 | |
lmb_reserve_flags 8 48 +40 | |
lmb_free 216 252 +36 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_add 8 24 +16 | |
event_type_name - 12 +12 | |
event_notify_null - 12 +12 | |
run_main_loop 16 24 +8 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 248 256 +8 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 92 - -92 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
images 3424 320 -3104 | |
mt7986_rfb : all +393 bss -3104 data +3112 rodata +61 text +324 | |
u-boot: add: 7/-5, grow: 12/-11 bytes: 4700/-4392 (308) | |
function old new delta | |
lmb - 3104 +3104 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
lmb_alloc_base 76 268 +192 | |
event_notify - 168 +168 | |
initcall_run_list 132 212 +80 | |
image_setup_libfdt 300 368 +68 | |
lmb_reserve_common - 56 +56 | |
lmb_reserve_flags 8 48 +40 | |
lmb_free 216 252 +36 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_add 8 24 +16 | |
event_type_name - 12 +12 | |
event_notify_null - 12 +12 | |
run_main_loop 16 24 +8 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 248 256 +8 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 92 - -92 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
images 3424 320 -3104 | |
mt7988_rfb : all +393 bss -3104 data +3112 rodata +61 text +324 | |
u-boot: add: 7/-5, grow: 12/-11 bytes: 4700/-4392 (308) | |
function old new delta | |
lmb - 3104 +3104 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
lmb_alloc_base 76 268 +192 | |
event_notify - 168 +168 | |
initcall_run_list 132 212 +80 | |
image_setup_libfdt 300 368 +68 | |
lmb_reserve_common - 56 +56 | |
lmb_reserve_flags 8 48 +40 | |
lmb_free 216 252 +36 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_add 8 24 +16 | |
event_type_name - 12 +12 | |
event_notify_null - 12 +12 | |
run_main_loop 16 24 +8 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 256 264 +8 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 92 - -92 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
images 3424 320 -3104 | |
mt7988_sd_rfb : all +393 bss -3104 data +3112 rodata +61 text +324 | |
u-boot: add: 7/-5, grow: 12/-11 bytes: 4700/-4392 (308) | |
function old new delta | |
lmb - 3104 +3104 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
lmb_alloc_base 76 268 +192 | |
event_notify - 168 +168 | |
initcall_run_list 132 212 +80 | |
image_setup_libfdt 300 368 +68 | |
lmb_reserve_common - 56 +56 | |
lmb_reserve_flags 8 48 +40 | |
lmb_free 216 252 +36 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_add 8 24 +16 | |
event_type_name - 12 +12 | |
event_notify_null - 12 +12 | |
run_main_loop 16 24 +8 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 256 264 +8 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 92 - -92 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
images 3424 320 -3104 | |
j721e_beagleboneai64_a72: all +392 bss -816 data +840 text +368 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3524/-3224 (300) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2008 1972 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
am62x_beagleplay_a53: all +392 bss -816 data +840 text +368 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3524/-3224 (300) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
am62x_evm_a53 : all +392 bss -816 data +840 text +368 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3524/-3224 (300) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
rock-4se-rk3399: all +388 bss -792 data +848 text +332 | |
u-boot: add: 10/-6, grow: 11/-18 bytes: 3660/-3396 (264) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
rock-pi-4-rk3399: all +388 bss -792 data +848 text +332 | |
u-boot: add: 10/-6, grow: 11/-18 bytes: 3660/-3396 (264) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
rock-pi-4c-rk3399: all +388 bss -792 data +848 text +332 | |
u-boot: add: 10/-6, grow: 11/-18 bytes: 3660/-3396 (264) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
lx2160ardb_tfa_stmm: all +384 bss -824 data +848 text +360 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3476/-3184 (292) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 608 +600 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 484 488 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 636 - -636 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
imx93-phyboard-segin: all +384 bss -832 data +848 text +368 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3508/-3208 (300) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 352 360 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2056 2020 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
imx93_var_som : all +384 bss -832 data +848 text +368 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3508/-3208 (300) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 352 360 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2400 2364 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
synquacer_developerbox: all +384 bss -832 data +848 text +368 | |
u-boot: add: 10/-5, grow: 10/-18 bytes: 2904/-2604 (300) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
do_load 720 820 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 272 280 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 616 608 -8 | |
efi_dt_fixup 380 372 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bdinfo_print_all 392 364 -28 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 192 - -192 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
qcom : all +379 bss -3096 data +3152 rodata +95 text +228 | |
u-boot: add: 10/-6, grow: 11/-19 bytes: 5332/-5124 (208) | |
function old new delta | |
lmb - 3104 +3104 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 236 +236 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 144 +144 | |
efi_mem_map_update_sync - 140 +140 | |
lmb_reserve_flags 8 100 +92 | |
_fs_read 236 328 +92 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
static.__func__ 6113 6161 +48 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 464 468 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 616 608 -8 | |
efi_dt_fixup 380 372 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bdinfo_print_all 648 620 -28 | |
bootm_run_states 2236 2200 -36 | |
board_late_init 1012 972 -40 | |
lmb_init_and_reserve_range 60 - -60 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
static.fs_read_lmb_check 192 - -192 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 3424 320 -3104 | |
ten64_tfa : all +376 bss -840 data +848 text +368 | |
u-boot: add: 10/-6, grow: 11/-17 bytes: 3508/-3208 (300) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 392 400 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
e850-96 : all +372 bss -800 data +840 text +332 | |
u-boot: add: 10/-5, grow: 7/-17 bytes: 3200/-2936 (264) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 456 +448 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
init_sequence_r 248 256 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 452 444 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 484 - -484 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
phycore_am64x_a53: all +192 bss -856 data +848 spl/u-boot-spl:all +157 spl/u-boot-spl:data +800 spl/u-boot-spl:rodata -91 spl/u-boot-spl:text -552 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3524/-3392 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
spl-u-boot-spl: add: 2/-9, grow: 4/0 bytes: 1160/-908 (252) | |
function old new delta | |
lmb - 800 +800 | |
lmb_add_region_flags 568 808 +240 | |
lmb_add_memory - 68 +68 | |
tftp_start 924 952 +28 | |
lmb_add 8 24 +16 | |
lmb_get_free_size 136 144 +8 | |
lmb_reserve_flags 8 - -8 | |
lmb_reserve 12 - -12 | |
arch_lmb_reserve 16 - -16 | |
fdtdec_get_bool 32 - -32 | |
tftp_init_load_addr 100 - -100 | |
boot_fdt_reserve_region 100 - -100 | |
lmb_init_and_reserve 136 - -136 | |
arch_lmb_reserve_generic 208 - -208 | |
boot_fdt_add_mem_rsv_regions 296 - -296 | |
xenguest_arm64 : all +340 bss -800 data +844 text +296 | |
u-boot: add: 10/-5, grow: 8/-15 bytes: 2800/-2576 (224) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
init_sequence_r 264 272 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
xenguest_arm64_virtio: all +340 bss -800 data +844 text +296 | |
u-boot: add: 10/-5, grow: 8/-15 bytes: 2800/-2576 (224) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
init_sequence_r 264 272 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
total_compute : all +324 bss -800 data +844 text +280 | |
u-boot: add: 10/-6, grow: 9/-16 bytes: 3304/-3092 (212) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 464 +456 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
init_sequence_r 264 272 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2400 2364 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 492 - -492 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
jethub_j100 : all +324 bss -752 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
s400 : all +324 bss -752 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
khadas-vim3 : all +324 bss -752 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
rock-4c-plus-rk3399: all +324 bss -856 data +848 text +332 | |
u-boot: add: 10/-6, grow: 11/-18 bytes: 3660/-3396 (264) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
durian : all +320 bss -760 data +844 text +236 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3200/-3032 (168) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 408 +400 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
init_sequence_r 248 256 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 436 - -436 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ad401 : all +320 bss -776 data +848 text +248 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2876/-2696 (180) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 352 360 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 452 444 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2008 1972 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
evb-px5 : all +320 bss -760 data +844 text +236 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3200/-3032 (168) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 408 +400 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 508 500 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 300 288 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2744 2708 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 436 - -436 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
jaguar-rk3588 : all +320 bss -744 data +848 text +216 | |
u-boot: add: 10/-7, grow: 11/-15 bytes: 3492/-3344 (148) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
mt7981_emmc_rfb: all +317 bss -3104 data +3112 rodata +61 text +248 | |
u-boot: add: 7/-6, grow: 14/-11 bytes: 4816/-4584 (232) | |
function old new delta | |
lmb - 3104 +3104 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
lmb_alloc_base 76 268 +192 | |
event_notify - 168 +168 | |
do_load 644 744 +100 | |
initcall_run_list 132 212 +80 | |
image_setup_libfdt 300 368 +68 | |
lmb_reserve_common - 56 +56 | |
lmb_reserve_flags 8 48 +40 | |
lmb_free 216 252 +36 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
event_type_name - 12 +12 | |
event_notify_null - 12 +12 | |
run_main_loop 16 24 +8 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 256 264 +8 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 92 - -92 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
static.fs_read_lmb_check 192 - -192 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
images 3424 320 -3104 | |
mt7981_sd_rfb : all +317 bss -3104 data +3112 rodata +61 text +248 | |
u-boot: add: 7/-6, grow: 14/-11 bytes: 4816/-4584 (232) | |
function old new delta | |
lmb - 3104 +3104 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
lmb_alloc_base 76 268 +192 | |
event_notify - 168 +168 | |
do_load 644 744 +100 | |
initcall_run_list 132 212 +80 | |
image_setup_libfdt 300 368 +68 | |
lmb_reserve_common - 56 +56 | |
lmb_reserve_flags 8 48 +40 | |
lmb_free 216 252 +36 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
event_type_name - 12 +12 | |
event_notify_null - 12 +12 | |
run_main_loop 16 24 +8 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 256 264 +8 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 92 - -92 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
static.fs_read_lmb_check 192 - -192 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
images 3424 320 -3104 | |
mt7986a_bpir3_emmc: all +317 bss -3104 data +3112 rodata +61 text +248 | |
u-boot: add: 7/-6, grow: 14/-11 bytes: 4816/-4584 (232) | |
function old new delta | |
lmb - 3104 +3104 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
lmb_alloc_base 76 268 +192 | |
event_notify - 168 +168 | |
do_load 644 744 +100 | |
initcall_run_list 132 212 +80 | |
image_setup_libfdt 300 368 +68 | |
lmb_reserve_common - 56 +56 | |
lmb_reserve_flags 8 48 +40 | |
lmb_free 216 252 +36 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
event_type_name - 12 +12 | |
event_notify_null - 12 +12 | |
run_main_loop 16 24 +8 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 256 264 +8 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 92 - -92 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
static.fs_read_lmb_check 192 - -192 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
images 3424 320 -3104 | |
mt7986a_bpir3_sd: all +317 bss -3104 data +3112 rodata +61 text +248 | |
u-boot: add: 7/-6, grow: 14/-11 bytes: 4816/-4584 (232) | |
function old new delta | |
lmb - 3104 +3104 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
lmb_alloc_base 76 268 +192 | |
event_notify - 168 +168 | |
do_load 644 744 +100 | |
initcall_run_list 132 212 +80 | |
image_setup_libfdt 300 368 +68 | |
lmb_reserve_common - 56 +56 | |
lmb_reserve_flags 8 48 +40 | |
lmb_free 216 252 +36 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
event_type_name - 12 +12 | |
event_notify_null - 12 +12 | |
run_main_loop 16 24 +8 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 256 264 +8 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 92 - -92 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
static.fs_read_lmb_check 192 - -192 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
images 3424 320 -3104 | |
bcm94908 : all +316 bss -800 data +840 text +276 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3420/-3212 (208) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
bcm94912 : all +316 bss -800 data +840 text +276 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3420/-3212 (208) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
bcm963146 : all +316 bss -800 data +840 text +276 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3420/-3212 (208) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
bcm963158 : all +316 bss -800 data +840 text +276 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3420/-3212 (208) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
bcm96813 : all +316 bss -800 data +840 text +276 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3420/-3212 (208) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
bcm96856 : all +316 bss -800 data +840 text +276 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3420/-3212 (208) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
bcm96858 : all +316 bss -800 data +840 text +276 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3420/-3212 (208) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
odroid-go-ultra: all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 272 280 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
odroid-hc4 : all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
odroid-n2 : all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
odroid-c2 : all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
videostrong-kii-pro: all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
wetek-hub : all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
p201 : all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
khadas-vim : all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
libretech-cc : all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
libretech-s905d-pc: all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
libretech-s912-pc: all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
wetek-core2 : all +316 bss -760 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
sei610 : all +316 bss -752 data +840 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2432 2396 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
generic-rk3568 : all +316 bss -784 data +844 text +256 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3288/-3100 (188) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 456 +448 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 484 - -484 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
generic-rk3588 : all +316 bss -784 data +844 text +256 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3288/-3100 (188) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 456 +448 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 484 - -484 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
espresso7420 : all +308 bss -800 data +840 text +268 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3404/-3204 (200) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 256 264 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 1928 1892 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
a3y17lte : all +304 bss -3104 data +3144 text +264 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 5712/-5516 (196) | |
function old new delta | |
lmb - 3104 +3104 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 236 +236 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 264 272 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 60 - -60 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 3424 320 -3104 | |
a5y17lte : all +304 bss -3104 data +3144 text +264 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 5712/-5516 (196) | |
function old new delta | |
lmb - 3104 +3104 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 236 +236 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 264 272 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 60 - -60 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 3424 320 -3104 | |
a7y17lte : all +304 bss -3104 data +3144 text +264 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 5712/-5516 (196) | |
function old new delta | |
lmb - 3104 +3104 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 236 +236 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 264 272 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 60 - -60 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 104 - -104 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 3424 320 -3104 | |
cortina_presidio-asic-emmc: all +288 bss -800 data +840 text +248 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3316/-3136 (180) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 352 360 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 496 488 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 292 280 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2032 1996 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
mt7622_rfb : all +288 bss -800 data +840 text +248 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3316/-3136 (180) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 272 280 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 592 584 -8 | |
efi_dt_fixup 380 372 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
mt8365_evk : all +288 bss -800 data +840 text +248 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3316/-3136 (180) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 344 352 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
mt8518_ap1_emmc: all +288 bss -800 data +840 text +248 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3316/-3136 (180) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 352 360 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2008 1972 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
mt8516_pumpkin : all +280 bss -800 data +848 text +232 | |
u-boot: add: 10/-6, grow: 10/-14 bytes: 2836/-2672 (164) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 352 360 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2260 2224 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls2080aqds_nand: all +264 bss -776 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3384/-3260 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 516 +508 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 544 - -544 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
qemu_arm64 : all +260 bss -752 data +840 text +172 | |
u-boot: add: 10/-7, grow: 11/-18 bytes: 3660/-3556 (104) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
beelink-gsking-x: all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
beelink-gtking : all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
beelink-gtkingpro: all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
p200 : all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
p212 : all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
beelink-gt1-ultimate: all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
khadas-vim2 : all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bananapi-m2s : all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
radxa-zero : all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
radxa-zero2 : all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
u200 : all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
khadas-vim3l : all +260 bss -816 data +848 text +228 | |
u-boot: add: 10/-6, grow: 10/-15 bytes: 2836/-2676 (160) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
mvebu_db-88f3720: all +260 bss -760 data +848 text +172 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3404/-3300 (104) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 1076 1104 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
px30-core-ctouch2-of10-px30: all +260 bss -776 data +848 text +188 | |
u-boot: add: 10/-7, grow: 11/-16 bytes: 3660/-3540 (120) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
px30-core-ctouch2-px30: all +260 bss -776 data +848 text +188 | |
u-boot: add: 10/-7, grow: 11/-16 bytes: 3660/-3540 (120) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
px30-core-edimm2.2-px30: all +260 bss -776 data +848 text +188 | |
u-boot: add: 10/-7, grow: 11/-16 bytes: 3660/-3540 (120) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
odroid-go2 : all +260 bss -776 data +848 text +188 | |
u-boot: add: 10/-7, grow: 11/-16 bytes: 3660/-3540 (120) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 412 416 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
cubieboard7 : all +260 bss -760 data +848 text +172 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3404/-3300 (104) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 264 272 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
beelink_gs1 : all +260 bss -760 data +848 text +172 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3404/-3300 (104) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
oceanic_5205_5inmfd: all +260 bss -760 data +848 text +172 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3660/-3556 (104) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
orangepi_pc2 : all +260 bss -760 data +848 text +172 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3660/-3556 (104) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2400 2364 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
orangepi_zero2 : all +260 bss -760 data +848 text +172 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3404/-3300 (104) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2400 2364 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
pinephone : all +260 bss -760 data +848 text +172 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3660/-3556 (104) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 368 376 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
pinetab : all +260 bss -760 data +848 text +172 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3660/-3556 (104) | |
function old new delta | |
do_bdinfo 8 832 +824 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 860 - -860 | |
x96_mate : all +260 bss -760 data +848 text +172 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3404/-3300 (104) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
tftp_init_load_addr 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
xilinx_versal_net_virt: all +257 bss -696 data +848 rodata -35 text +140 | |
u-boot: add: 10/-9, grow: 12/-17 bytes: 3532/-3468 (64) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 640 +632 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 1088 1116 +28 | |
wget_start 328 352 +24 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 452 444 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
lmb_init 16 - -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
wget_init_load_size 80 - -80 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
board_get_usable_ram_top 156 - -156 | |
static.fs_read_lmb_check 164 - -164 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 668 - -668 | |
images 1120 320 -800 | |
vexpress_aemv8a_juno: all +256 bss -800 data +848 text +208 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3368 (140) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 264 272 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
vexpress_aemv8a_semi: all +256 bss -792 data +840 text +208 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3368 (140) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 264 272 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2088 2052 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
pe2201 : all +256 bss -824 data +844 text +236 | |
u-boot: add: 10/-6, grow: 9/-17 bytes: 3200/-3032 (168) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 408 +400 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
init_sequence_r 248 256 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 436 - -436 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1012afrdm_tfa: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3416/-3284 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 540 +532 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 568 - -568 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1012afrwy_tfa_SECURE_BOOT: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3416/-3284 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 540 +532 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 568 - -568 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1012aqds_tfa : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3416/-3284 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 540 +532 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 312 320 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 568 - -568 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1012aqds_tfa_SECURE_BOOT: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3416/-3284 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 540 +532 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 320 328 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 568 - -568 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1012a2g5rdb_tfa: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3416/-3284 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 540 +532 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 568 - -568 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1012ardb_tfa : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3416/-3284 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 540 +532 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 568 - -568 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1012ardb_tfa_SECURE_BOOT: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3416/-3284 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 540 +532 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 568 - -568 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1028aqds_tfa : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 384 392 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls1028aqds_tfa_lpuart: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 384 392 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls1028aqds_tfa_SECURE_BOOT: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 384 392 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls1028ardb_tfa_SECURE_BOOT: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 376 384 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls1043aqds_tfa : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-18 bytes: 3416/-3284 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 540 +532 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 320 328 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 568 - -568 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1043aqds_tfa_SECURE_BOOT: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-18 bytes: 3416/-3284 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 540 +532 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 320 328 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 568 - -568 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1043ardb_tfa : all +256 bss -800 data +848 text +208 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3368 (140) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 320 328 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls1043ardb_tfa_SECURE_BOOT: all +256 bss -800 data +848 text +208 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3368 (140) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 320 328 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls1046afrwy_tfa: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 320 328 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls1046afrwy_tfa_SECURE_BOOT: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 312 320 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls1046aqds_tfa : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-18 bytes: 3416/-3284 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 540 +532 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 328 336 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 568 - -568 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1046aqds_tfa_SECURE_BOOT: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-18 bytes: 3416/-3284 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 540 +532 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 328 336 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 568 - -568 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls1046ardb_tfa : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 320 328 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls1046ardb_tfa_SECURE_BOOT: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 320 328 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls1088aqds_tfa : all +256 bss -800 data +848 text +208 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3524/-3384 (140) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 336 344 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
ls1088ardb_tfa : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 328 336 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls1088ardb_tfa_SECURE_BOOT: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 328 336 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
ls2088aqds_tfa : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3360 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 312 320 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
ls2080ardb_nand: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3384/-3252 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 516 +508 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 320 328 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 544 - -544 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls2088ardb_tfa : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3476/-3344 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 608 +600 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 320 328 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 636 - -636 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
ls2088ardb_tfa_SECURE_BOOT: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3476/-3344 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 608 +600 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 320 328 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 636 - -636 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
lx2160aqds_tfa : all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 392 400 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
lx2160aqds_tfa_SECURE_BOOT: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 312 320 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
lx2160ardb_tfa : all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3476/-3352 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 608 +600 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 384 392 +8 | |
image_setup_libfdt 484 488 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 636 - -636 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
lx2160ardb_tfa_SECURE_BOOT: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3476/-3352 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 608 +600 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 636 - -636 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
lx2162aqds_tfa : all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 392 400 +8 | |
image_setup_libfdt 484 488 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
lx2162aqds_tfa_SECURE_BOOT: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 392 400 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
lx2162aqds_tfa_verified_boot: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 392 400 +8 | |
image_setup_libfdt 484 488 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 296 284 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
imx8ulp_evk : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 272 280 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
imx93_11x11_evk: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 352 360 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
imx93_11x11_evk_ld: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 352 360 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
phycore_am62x_a53: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3524/-3392 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
iot2050 : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 488 492 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 508 500 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 300 288 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2576 2540 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
am62ax_evm_a53 : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3524/-3392 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
am65x_evm_a53 : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
j7200_evm_a72 : all +256 bss -800 data +848 text +208 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3368 (140) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 488 492 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2008 1972 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
am68_sk_a72 : all +256 bss -800 data +848 text +208 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3368 (140) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2008 1972 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
j721s2_evm_a72 : all +256 bss -800 data +848 text +208 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3368 (140) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 404 408 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2008 1972 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
am69_sk_a72 : all +256 bss -800 data +848 text +208 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3368 (140) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
j784s4_evm_a72 : all +256 bss -800 data +848 text +208 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3368 (140) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 924 952 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
load_serial 564 556 -8 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
verdin-am62_a53: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3552/-3420 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
do_load 720 820 +100 | |
lmb_reserve_flags 8 100 +92 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 940 968 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 488 492 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 600 592 -8 | |
efi_dt_fixup 380 372 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
efi_get_memory_map_alloc 168 - -168 | |
static.fs_read_lmb_check 192 - -192 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
x240 : all +256 bss -768 data +840 text +184 | |
u-boot: add: 10/-7, grow: 11/-18 bytes: 3492/-3376 (116) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 452 444 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
turris_mox : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3524/-3392 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 648 +640 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 1076 1104 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 376 384 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 676 - -676 | |
images 1120 320 -800 | |
eDPU : all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 1076 1104 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 288 296 +8 | |
image_setup_libfdt 452 456 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 452 444 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
clearfog_gt_8k : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 1076 1104 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
mvebu_db_armada8k: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 1076 1104 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
mvebu_mcbin-88f8040: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 1076 1104 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
mvebu_crb_cn9130: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 1076 1104 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
mvebu_db_cn9130: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 1076 1104 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 312 320 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
octeontx_81xx : all +256 bss -816 data +848 text +224 | |
u-boot: add: 10/-6, grow: 10/-18 bytes: 3376/-3220 (156) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 464 468 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
tftp_init_load_addr 100 80 -20 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
octeontx_83xx : all +256 bss -816 data +848 text +224 | |
u-boot: add: 10/-6, grow: 10/-18 bytes: 3376/-3220 (156) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 464 468 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
tftp_init_load_addr 100 80 -20 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
octeontx2_95xx : all +256 bss -816 data +848 text +224 | |
u-boot: add: 10/-6, grow: 10/-18 bytes: 3376/-3220 (156) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 464 468 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
tftp_init_load_addr 100 80 -20 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
octeontx2_96xx : all +256 bss -816 data +848 text +224 | |
u-boot: add: 10/-6, grow: 10/-18 bytes: 3376/-3220 (156) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 576 +568 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
lmb_add_memory - 20 +20 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 464 468 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 428 420 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
tftp_init_load_addr 100 80 -20 | |
arch_lmb_reserve_generic 164 144 -20 | |
boot_relocate_fdt 512 488 -24 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
lmb_init_and_reserve 68 - -68 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
bdinfo_print_all 604 - -604 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
evb-rk3308 : all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 280 288 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2400 2364 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
ficus-rk3399 : all +256 bss -776 data +848 text +184 | |
u-boot: add: 10/-7, grow: 11/-18 bytes: 3492/-3376 (116) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 452 444 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
rock960-rk3399 : all +256 bss -776 data +848 text +184 | |
u-boot: add: 10/-7, grow: 11/-18 bytes: 3732/-3616 (116) | |
function old new delta | |
do_bdinfo 8 864 +856 | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 452 444 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootz 340 332 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
images 1120 320 -800 | |
bdinfo_print_all 892 - -892 | |
quartz64-a-rk3566: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
soquartz-blade-rk3566: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
soquartz-cm4-rk3566: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
soquartz-model-a-rk3566: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
bpi-r2-pro-rk3568: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
lubancat-2-rk3568: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
nanopi-r5c-rk3568: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
nanopi-r5s-rk3568: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
powkiddy-x55-rk3566: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
radxa-cm3-io-rk3566: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
radxa-e25-rk3568: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
rock-3a-rk3568 : all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
nanopc-t6-rk3588: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
nova-rk3588s : all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
quartzpro64-rk3588: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
rock5a-rk3588s : all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
rock5b-rk3588 : all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
coolpi-4b-rk3588s: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
coolpi-cm5-evb-rk3588: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
evb-rk3588 : all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
orangepi-5-plus-rk3588: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 304 312 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
toybrick-rk3588: all +256 bss -784 data +848 text +192 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3492/-3368 (124) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 624 +616 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 668 740 +72 | |
lmb_add_memory - 60 +60 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 296 304 +8 | |
image_setup_libfdt 376 380 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 444 436 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 528 516 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 212 192 -20 | |
bootm_run_states 2236 2200 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 652 - -652 | |
images 1120 320 -800 | |
socfpga_stratix10_atf: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
socfpga_agilex : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1884 1848 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
socfpga_agilex_atf: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
socfpga_agilex_vab: all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_update_sync - 16 +16 | |
_u_boot_list_2_evspy_info_2_EVT_EFI_MEM_MAP_UPDATE_3_efi_mem_map_update_sync - 16 +16 | |
lmb_get_free_size 136 144 +8 | |
init_sequence_r 360 368 +8 | |
image_setup_libfdt 364 368 +4 | |
lmb_reserve 12 8 -4 | |
lmb_dump_all_force 68 64 -4 | |
do_booti 524 520 -4 | |
efi_install_fdt 436 428 -8 | |
efi_dt_fixup 324 316 -8 | |
do_bootm_vxworks 488 480 -8 | |
image_setup_linux 96 84 -12 | |
boot_relocate_fdt 524 512 -12 | |
boot_ramdisk_high 280 268 -12 | |
load_serial 536 520 -16 | |
boot_fdt_add_mem_rsv_regions 296 280 -16 | |
arch_lmb_reserve_generic 208 188 -20 | |
bootm_run_states 1840 1804 -36 | |
lmb_init_and_reserve_range 56 - -56 | |
tftp_init_load_addr 100 - -100 | |
lmb_init_and_reserve 100 - -100 | |
lmb_reserve_common 180 56 -124 | |
lmb_free 216 60 -156 | |
static.fs_read_lmb_check 164 - -164 | |
efi_get_memory_map_alloc 168 - -168 | |
__lmb_alloc_base 240 - -240 | |
efi_add_memory_map_pg 764 116 -648 | |
bdinfo_print_all 660 - -660 | |
images 1120 320 -800 | |
socfpga_n5x : all +256 bss -792 data +848 text +200 | |
u-boot: add: 10/-7, grow: 11/-17 bytes: 3508/-3376 (132) | |
function old new delta | |
lmb - 800 +800 | |
__efi_add_memory_map_pg - 764 +764 | |
do_bdinfo 8 632 +624 | |
lmb_add_region_flags 568 808 +240 | |
__lmb_free - 232 +232 | |
lmb_alloc_base 76 288 +212 | |
lmb_mem_map_update_sync - 104 +104 | |
efi_mem_map_update_sync - 100 +100 | |
lmb_reserve_flags 8 100 +92 | |
do_load 664 736 +72 | |
lmb_add_memory - 68 +68 | |
lmb_map_update_notify - 52 +52 | |
initr_lmb - 36 +36 | |
tftp_start 908 936 +28 | |
lmb_alloc_addr 112 128 +16 | |
lmb_add 8 24 +16 | |
_u_boot_list_2_evspy_info_2_EVT_LMB_MAP_UPDATE_3_lmb_mem_map_updat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment