Browse Source

s390: fix kernel install

Waldemar Brodkorb 1 year ago
parent
commit
3c30dd7706
1 changed files with 2 additions and 5 deletions
  1. 2 5
      target/s390/Makefile

+ 2 - 5
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)