diff options
| author | Jeffery To | 2019-08-02 19:03:14 +0000 |
|---|---|---|
| committer | Petr Štetiar | 2019-08-04 20:09:20 +0000 |
| commit | 6e300f6a0c94812d0f4d8f67df6604c763f7552f (patch) | |
| tree | 71e10201525dc0d24818770c0e437f9797fa1043 | |
| parent | b6bae4a2c9f11f7e55319c2b4c709396ce649688 (diff) | |
| download | lynxis-6e300f6a0c94812d0f4d8f67df6604c763f7552f.tar.gz | |
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>
| -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 \ |