diff options
author | Yangbo Lu <yangbo.lu@nxp.com> | 2020-03-14 13:07:50 +0800 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2020-05-07 12:53:06 +0200 |
commit | 2e2643f74d33fa2d2597cc324a6f4215d270990e (patch) | |
tree | f577526eda4d1d17acafff63901399b7a60c64ed /package/firmware/layerscape/ls-rcw/patches/0001-Disable-byte-swapping.patch | |
parent | 084c82c5b0910c44c3eabb55edf2dfc00a3b5987 (diff) | |
download | upstream-2e2643f74d33fa2d2597cc324a6f4215d270990e.tar.gz upstream-2e2643f74d33fa2d2597cc324a6f4215d270990e.tar.bz2 upstream-2e2643f74d33fa2d2597cc324a6f4215d270990e.zip |
layerscape: update ls-rcw to latest LSDK-20.04
Update ls-rcw to latest LSDK-20.04.
Update patch 0001 with a new one.
Drop patch 0002 since it had been integrated.
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
Diffstat (limited to 'package/firmware/layerscape/ls-rcw/patches/0001-Disable-byte-swapping.patch')
-rw-r--r-- | package/firmware/layerscape/ls-rcw/patches/0001-Disable-byte-swapping.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/package/firmware/layerscape/ls-rcw/patches/0001-Disable-byte-swapping.patch b/package/firmware/layerscape/ls-rcw/patches/0001-Disable-byte-swapping.patch deleted file mode 100644 index 2ea260bfd4..0000000000 --- a/package/firmware/layerscape/ls-rcw/patches/0001-Disable-byte-swapping.patch +++ /dev/null @@ -1,44 +0,0 @@ -From ef78dc0683a7f5ae80b27878a8a2f91d504e3290 Mon Sep 17 00:00:00 2001 -From: Yangbo Lu <yangbo.lu@nxp.com> -Date: Wed, 19 Jun 2019 10:50:29 +0800 -Subject: [PATCH 1/2] Disable byte swapping - -Because TF-A had already handled rcw byte swapping, the -byte swapping in rcw could be dropped. - -Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com> ---- - Makefile | 4 ---- - Makefile.inc | 1 - - 2 files changed, 5 deletions(-) - -diff --git a/Makefile b/Makefile -index f697241..837b69e 100644 ---- a/Makefile -+++ b/Makefile -@@ -14,10 +14,6 @@ TCLSH := $(shell command -v tclsh 2> /dev/null) - VER = $(shell git describe --tags) - - all install clean: --ifndef TCLSH -- $(error "tclsh is not available. please install it.") -- exit 1 --endif - @for board in $(BOARDS); do \ - $(MAKE) -C $$board $@ DESTDIR=$(DESTDIR)/$$board; \ - done -diff --git a/Makefile.inc b/Makefile.inc -index 87639bc..7d9a3d3 100644 ---- a/Makefile.inc -+++ b/Makefile.inc -@@ -17,7 +17,6 @@ targets = $(txt_sources:.txt=.bin) $(rcw_sources:.rcw=.bin) $(swap_sources) - $(RCW) -i $< -o $@ - - all: $(targets) -- $(QSPI_SWAP_SCRIPT) $(QSPI_SWAP_LIST) - - install: $(targets) - $(INSTALL) -d $(DESTDIR) --- -2.7.4 - |