Re: [U-Boot] [PATCH] arm: mvebu: turris_omnia: Use thumb instructions in SPL to save space

2019-04-26 Thread Stefan Roese
On 25.04.19 07:32, Stefan Roese wrote: With the latest changes to the drivers (SPI_FLASH_SPANSION etc), Travis reports that the SPL image is too big. Let's use the thumb instructions in SPL to save some space and make the image fit again. Signed-off-by: Stefan Roese Cc: Baruch Siach Cc: Marek

Re: [U-Boot] [PATCH] arm: mvebu: turris_omnia: Use thumb instructions in SPL to save space

2019-04-26 Thread Stefan Roese
Hi Marek, On 25.04.19 15:24, Marek Behún wrote: Stefan, thanks for this. My workaround for this was to increase CONFIG_SPL_SIZE from 140 KiB to 160 KiB, in include/configs/turris_omnia.h. But yours works as well. Perhaps we should do both if the image increases in the future... Reviewed-by:

Re: [U-Boot] [PATCH] arm: mvebu: turris_omnia: Use thumb instructions in SPL to save space

2019-04-25 Thread Marek Behún
Stefan, thanks for this. My workaround for this was to increase CONFIG_SPL_SIZE from 140 KiB to 160 KiB, in include/configs/turris_omnia.h. But yours works as well. Perhaps we should do both if the image increases in the future... Reviewed-by: Marek Behún On Thu, 25 Apr 2019 07:32:12 +0200

[U-Boot] [PATCH] arm: mvebu: turris_omnia: Use thumb instructions in SPL to save space

2019-04-24 Thread Stefan Roese
With the latest changes to the drivers (SPI_FLASH_SPANSION etc), Travis reports that the SPL image is too big. Let's use the thumb instructions in SPL to save some space and make the image fit again. Signed-off-by: Stefan Roese Cc: Baruch Siach Cc: Marek Behun ---