diff options
author | Felix Fietkau <nbd@nbd.name> | 2016-07-19 16:50:55 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-07-20 10:13:50 +0200 |
commit | edea59fd99cfe708dd882610e8a3f456dda5c7ad (patch) | |
tree | f030998f484381ecfc3f8f7403c95dbdb43175b2 /target/linux/omap/image | |
parent | 1625e5777213117768f6396ec697e4a5ce41791c (diff) | |
download | upstream-edea59fd99cfe708dd882610e8a3f456dda5c7ad.tar.gz upstream-edea59fd99cfe708dd882610e8a3f456dda5c7ad.tar.bz2 upstream-edea59fd99cfe708dd882610e8a3f456dda5c7ad.zip |
omap: remove obsolete code for including kernel/dtb in rootfs
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'target/linux/omap/image')
-rw-r--r-- | target/linux/omap/image/Makefile | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/target/linux/omap/image/Makefile b/target/linux/omap/image/Makefile index 3fa2848e03..4c24cca27a 100644 --- a/target/linux/omap/image/Makefile +++ b/target/linux/omap/image/Makefile @@ -15,17 +15,6 @@ define Image/BuildKernel ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),) $(CP) $(KDIR)/zImage-initramfs $(BIN_DIR)/$(IMG_PREFIX)-zImage-initramfs endif - - ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_KERNEL),) - $(INSTALL_DIR) $(TARGET_DIR)/boot - $(CP) $(BIN_DIR)/$(IMG_PREFIX)-zImage $(TARGET_DIR)/boot/zImage - endif - ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_DTB),) - $(INSTALL_DIR) $(TARGET_DIR)/boot - $(CP) $(DTS_DIR)/am335x*.dtb $(TARGET_DIR)/boot/ - $(CP) $(DTS_DIR)/omap3*.dtb $(TARGET_DIR)/boot/ - $(CP) $(DTS_DIR)/omap4*.dtb $(TARGET_DIR)/boot/ - endif -mkdir $(BIN_DIR)/dtbs -$(CP) $(DTS_DIR)/am335x*.dtb $(BIN_DIR)/dtbs/ -$(CP) $(DTS_DIR)/omap3*.dtb $(BIN_DIR)/dtbs/ |