diff options
author | Florian Fainelli <florian@openwrt.org> | 2007-04-17 22:16:28 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2007-04-17 22:16:28 +0000 |
commit | a44434cb9fd892d86379e09db413831c7ded1e61 (patch) | |
tree | 379d5e5f8955ebeffb405f65a12836ecb01666a9 /target/linux/rb1xx-2.6/image/Makefile | |
parent | d22c77b8089747f892ce5b9baee55b3cb438ba26 (diff) | |
download | upstream-a44434cb9fd892d86379e09db413831c7ded1e61.tar.gz upstream-a44434cb9fd892d86379e09db413831c7ded1e61.tar.bz2 upstream-a44434cb9fd892d86379e09db413831c7ded1e61.zip |
Remove this target since rb-2.6 will build both rb532 and adm5120 later on
SVN-Revision: 6992
Diffstat (limited to 'target/linux/rb1xx-2.6/image/Makefile')
-rw-r--r-- | target/linux/rb1xx-2.6/image/Makefile | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/target/linux/rb1xx-2.6/image/Makefile b/target/linux/rb1xx-2.6/image/Makefile deleted file mode 100644 index e920a0342f..0000000000 --- a/target/linux/rb1xx-2.6/image/Makefile +++ /dev/null @@ -1,57 +0,0 @@ -# -# Copyright (C) 2006 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# -include $(TOPDIR)/rules.mk -include $(INCLUDE_DIR)/image.mk -include $(INCLUDE_DIR)/kernel.mk - -LOADADDR = 0x81000000 # RAM start + 16M -KERNEL_ENTRY = 0x80101000 -RAMSIZE = 0x00100000 # 1MB -IMAGE_COPY = 1 - -LOADER_MAKEOPTS= \ - KDIR=$(KDIR) \ - LOADADDR=$(LOADADDR) \ - KERNEL_ENTRY=$(KERNEL_ENTRY) \ - RAMSIZE=$(RAMSIZE) \ - IMAGE_COPY=$(IMAGE_COPY) - -#define Build/Compile -# $(CC) -o $(STAGING_DIR)/bin/patch-cmdline $(PLATFORM_DIR)/src/patch-cmdline.c -#endef - -define Build/Clean - $(MAKE) -C $(GENERIC_PLATFORM_DIR)/image/lzma-loader $(LOADER_MAKEOPTS) clean -endef - -define Image/Prepare - cat $(KDIR)/vmlinux | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma - $(MAKE) -C $(GENERIC_PLATFORM_DIR)/image/lzma-loader $(LOADER_MAKEOPTS) clean compile -endef - -define Image/BuildKernel - $(CP) $(KDIR)/loader.elf $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinux -endef - -define Image/cmdline/jffs2-64k -block2mtd.block2mtd=/dev/cfa2,65536 root=/dev/mtdblock0 rootfstype=jffs2 init=/etc/preinit -endef - -define Image/cmdline/jffs2-128k -block2mtd.block2mtd=/dev/cfa2,131072 root=/dev/mtdblock0 rootfstype=jffs2 init=/etc/preinit -endef - -define Image/cmdline/ext2 -root=/dev/cfa2 rootfstype=ext2 init=/etc/preinit -endef - -define Image/Build - #$(STAGING_DIR)/bin/patch-cmdline $(KDIR)/vmlinux.elf '$(strip $(call Image/cmdline/$(1))) ' - ./gen_image.sh $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).bin 4 $(KDIR)/vmlinux.elf $(CONFIG_TARGET_ROOTFS_FSPART) $(KDIR)/root.$(1) -endef - -$(eval $(call BuildImage)) |