aboutsummaryrefslogtreecommitdiff
path: root/common
AgeCommit message (Expand)AuthorFilesLines
2023-10-17spl: Use map_sysmem where appropriateSean Anderson11-35/+69
2023-10-17spl: Add callbacks to invalidate cached devicesSean Anderson2-1/+12
2023-10-17fs: ext4: Fix building ext4 in SPL if write is enabledSean Anderson1-0/+1
2023-10-17Move i.MX8 container image loading support to common/splSean Anderson3-0/+173
2023-10-17arm: imx: Check header before calling spl_load_imx_containerSean Anderson4-4/+12
2023-10-17spl: fit: Fix entry point for SPL_LOAD_FIT_FULLSean Anderson1-1/+2
2023-10-17spl: nor: Don't allocate header on stackSean Anderson1-7/+4
2023-10-17spl: legacy: Fix referencing _image_binary_endSean Anderson1-1/+1
2023-10-17spl: mmc: Fix subsequent calls to spl_mmc_load with CONFIG_BLKSean Anderson1-1/+1
2023-10-16spl: fit: Add board level function to decide application of DTOMarek Vasut1-3/+20
2023-10-11cli: Add a function to set up a new creadSimon Glass1-9/+15
2023-10-11cli: Allow command completion to be disabledSimon Glass1-1/+2
2023-10-11cli: Allow history to be disabledSimon Glass1-20/+22
2023-10-11cli: Terminate the string in cread_line_process_ch()Simon Glass1-1/+7
2023-10-11cli: Create a function to process charactersSimon Glass1-45/+63
2023-10-11cli: Unindent some code in cread_line()Simon Glass1-140/+139
2023-10-11cli: Convert cread_line() to use a struct for the main varsSimon Glass1-55/+61
2023-10-11cli: Use unsigned int instead of unsigned longSimon Glass1-9/+8
2023-10-11cli: Implement delete-word in cread_line()Simon Glass1-0/+31
2023-10-11cli: Drop #ifdefs for CONFIG_AUTO_COMPLETE in cli_readlineSimon Glass1-43/+42
2023-10-11cli: Drop some #ifdefs in cli_readlineSimon Glass1-6/+14
2023-10-11cli: Add a command to show cmdline historySimon Glass1-3/+1
2023-10-11cli: Move simple readline into a functionSimon Glass1-33/+46
2023-10-11event: Rename rest of EVENT_SPY to EVENT_SPY_FULL or EVENT_SPY*Marek Vasut1-2/+2
2023-10-11malloc: Enable assertions if UNIT_TEST is enabledSean Anderson1-4/+4
2023-10-10blk: Use a macro for the typical block sizeBin Meng1-2/+2
2023-10-09stdio: fix stdio_deregister_dev()Heinrich Schuchardt1-3/+3
2023-10-09spl: Jump to image at end of board_init_rJonas Karlman1-5/+7
2023-10-09spl: add __noreturn attribute to spl_invoke_atf functionChanho Park1-4/+4
2023-10-08Merge tag 'u-boot-rockchip-20231007' of https://source.denx.de/u-boot/custodi...WIP/08Oct2023Tom Rini1-3/+17
2023-10-07spl: fit: support for booting a LZMA-compressed U-boot binaryManoj Sai1-1/+12
2023-10-07spl: fit: support for booting a GZIP-compressed U-boot binaryManoj Sai1-3/+6
2023-10-06bloblist: Add missing nameSimon Glass1-0/+1
2023-10-06bloblist: Support initing from multiple placesSimon Glass2-4/+13
2023-10-06sandbox: Move the bloblist down a little in memorySimon Glass1-1/+1
2023-10-06spl: Move bloblist writing until the image is knownSimon Glass1-12/+12
2023-10-06spl: Use the correct FIT_..._PROP constantsSimon Glass1-5/+6
2023-10-06spl: Move the full FIT code to spl_fit.cSimon Glass2-101/+100
2023-10-06spl: Rename spl_load_fit_image() to load_simple_fit()Simon Glass1-11/+10
2023-10-06spl: Remove #ifdefs with BOOTSTAGESimon Glass2-12/+17
2023-10-06spl: Avoid an #ifdef when printing gd->malloc_ptrSimon Glass1-4/+5
2023-10-06spl: Use SYS_MALLOC_F instead of SYS_MALLOC_F_LENSimon Glass6-18/+14
2023-10-06spl: Drop the switch() statement for OS selectionSimon Glass1-22/+10
2023-10-06spl: Avoid #ifdef with CONFIG_SPL_PAYLOAD_ARGS_ADDRSimon Glass1-6/+4
2023-10-06spl: Drop #ifdefs for BOARD_INIT and watchdogSimon Glass1-6/+4
2023-10-06spl: mx6: powerpc: Drop the condition on timer_init()Simon Glass1-6/+0
2023-10-06spl: Avoid #ifdef with CONFIG_SPL_SYS_MALLOCSimon Glass1-4/+4
2023-10-06spl: Rename SYS_SPL_ARGS_ADDR to SPL_PAYLOAD_ARGS_ADDRSimon Glass10-22/+22
2023-10-06spl: Use CONFIG_SPL... instead of CONFIG_..._SPL_...Simon Glass4-12/+12
2023-10-02Merge branch 'next'Tom Rini25-2630/+114