diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2008-11-26 10:06:34 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2008-11-26 10:06:34 +0000 |
commit | b359ab764fadb724e6e9c83624feb46354225c2c (patch) | |
tree | d20d480d0df7bfb090549a698ef54a657cecf05b /target/linux/magicbox/image | |
parent | 8375b830152d7e38e385bf7b9b0fa31cf197628b (diff) | |
download | upstream-b359ab764fadb724e6e9c83624feb46354225c2c.tar.gz upstream-b359ab764fadb724e6e9c83624feb46354225c2c.tar.bz2 upstream-b359ab764fadb724e6e9c83624feb46354225c2c.zip |
nuke the magicbox target and incorporate a rewritten port into ppc40x - note: no CF driver for now
SVN-Revision: 13358
Diffstat (limited to 'target/linux/magicbox/image')
-rw-r--r-- | target/linux/magicbox/image/Makefile | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/target/linux/magicbox/image/Makefile b/target/linux/magicbox/image/Makefile deleted file mode 100644 index edae68a266..0000000000 --- a/target/linux/magicbox/image/Makefile +++ /dev/null @@ -1,37 +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 - -define Image/Prepare - cp $(LINUX_DIR)/arch/ppc/boot/images/uImage $(KDIR)/uImage -endef - -define Image/BuildKernel - cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage -endef - -define Image/Build - $(call Image/Build/$(1),$(1)) -endef - -define Image/Build/jffs2-64k - ( \ - dd if=$(KDIR)/uImage bs=1024k conv=sync; \ - dd if=$(KDIR)/root.$(1) bs=65536 conv=sync; \ - ) > $(BIN_DIR)/openwrt-$(BOARD)-$(1).img -endef - -define Image/Build/squashfs - $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) - ( \ - dd if=$(LINUX_DIR)/arch/ppc/boot/images/uImage bs=1024k conv=sync; \ - dd if=$(KDIR)/root.$(1) bs=65536 conv=sync; \ - ) > $(BIN_DIR)/openwrt-$(BOARD)-$(1).img -endef - -$(eval $(call BuildImage)) |