diff options
author | Jeffery To <jeffery.to@gmail.com> | 2019-08-03 03:03:14 +0800 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-09-04 13:34:22 +0200 |
commit | 8a7dc58e0e7309fcdcb8381b91a249595e7ed9d1 (patch) | |
tree | a4e5c93515857c2e02d14b1065f9b682477661db /target/sdk/Makefile | |
parent | 753f7213b01828f6b9a823e84a1018b349d319d2 (diff) | |
download | upstream-8a7dc58e0e7309fcdcb8381b91a249595e7ed9d1.tar.gz upstream-8a7dc58e0e7309fcdcb8381b91a249595e7ed9d1.tar.bz2 upstream-8a7dc58e0e7309fcdcb8381b91a249595e7ed9d1.zip |
sdk: Fix cryptodev-linux build when CONFIG_ARM64_MODULE_PLTS=y
When CONFIG_ARM64_MODULE_PLTS=y, arch/arm64/kernel/module.lds is
required to build cryptodev-linux. This updates the sdk to include this
file.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 6e300f6a0c94812d0f4d8f67df6604c763f7552f)
Diffstat (limited to 'target/sdk/Makefile')
-rw-r--r-- | target/sdk/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/sdk/Makefile b/target/sdk/Makefile index 3b860db93a..0bed666d21 100644 --- a/target/sdk/Makefile +++ b/target/sdk/Makefile @@ -64,7 +64,8 @@ KERNEL_FILES_ARCH = \ include \ */include \ scripts \ - kernel/asm-offsets.s + kernel/asm-offsets.s \ + kernel/module.lds KERNEL_FILES_BASE := \ .config \ |