diff options
| author | Tom Rini <[email protected]> | 2019-11-28 07:34:41 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-11-28 07:34:41 -0500 |
| commit | dd38416d6b354acb5d12e2bd1fd45e7e63b8a605 (patch) | |
| tree | 5747d15563ec3bf8eb3e05debbd47357b6d79d38 /Makefile | |
| parent | c4f697b291563adbde30ad4af66cb170e708dde4 (diff) | |
| parent | a1a9843a29672be49a5bbb3a07fea8dbc88369ba (diff) | |
Merge git://git.denx.de/u-boot-socfpga
- Assorted Gen5 fixes
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1476,6 +1476,17 @@ cmd_socboot = cat spl/u-boot-spl.sfp spl/u-boot-spl.sfp \ u-boot.img > $@ || rm -f $@ u-boot-with-spl.sfp: spl/u-boot-spl.sfp u-boot.img FORCE $(call if_changed,socboot) + +quiet_cmd_socnandboot = SOCNANDBOOT $@ +cmd_socnandboot = dd if=/dev/zero of=spl/u-boot-spl.pad bs=64 count=1024 ; \ + cat spl/u-boot-spl.sfp spl/u-boot-spl.pad \ + spl/u-boot-spl.sfp spl/u-boot-spl.pad \ + spl/u-boot-spl.sfp spl/u-boot-spl.pad \ + spl/u-boot-spl.sfp spl/u-boot-spl.pad \ + u-boot.img > $@ || rm -f $@ spl/u-boot-spl.pad +u-boot-with-nand-spl.sfp: spl/u-boot-spl.sfp u-boot.img FORCE + $(call if_changed,socnandboot) + endif ifeq ($(CONFIG_MPC85xx)$(CONFIG_OF_SEPARATE),yy) |
