diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2023-08-06 12:03:26 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2023-08-06 13:04:16 +0200 |
commit | 3c30dd7706aad896f6b7bb9e197fc0a4edb2f56d (patch) | |
tree | 6e4e8d959e708c922cc180158ab9772598b5126e /target/s390/Makefile | |
parent | 64c5b17973f15c9b8e86ccd40c93da804bb60522 (diff) |
s390: fix kernel install
Diffstat (limited to 'target/s390/Makefile')
-rw-r--r-- | target/s390/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/target/s390/Makefile b/target/s390/Makefile index 4e4dd8496..fd7142e45 100644 --- a/target/s390/Makefile +++ b/target/s390/Makefile @@ -47,11 +47,8 @@ endif endif # image creation and kernel install -kernel-strip: - $(TARGET_CROSS)objcopy $(OSTRIP) -S $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL) - -kernel-install: kernel-strip - @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/${TARGET_KERNEL} +kernel-install: + @cp $(KERNEL) $(FW_DIR)/${TARGET_KERNEL} # filesystem specific targets ifeq ($(ADK_TARGET_FS),archive) |