diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2008-06-13 12:58:28 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2008-06-13 12:58:28 +0000 |
commit | 3a02933ef3b70464c54d01bf56b3cb16cac767f7 (patch) | |
tree | 6a058f91fec2cdf9a069bf2e39a98f726024be93 /target/linux/orion/image | |
parent | e48fee718325a0e09ecc4f920187f2fb0d8b76e1 (diff) | |
download | upstream-3a02933ef3b70464c54d01bf56b3cb16cac767f7.tar.gz upstream-3a02933ef3b70464c54d01bf56b3cb16cac767f7.tar.bz2 upstream-3a02933ef3b70464c54d01bf56b3cb16cac767f7.zip |
temporary hack to fixup the mach id for the wrt350nv2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11459 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/orion/image')
-rw-r--r-- | target/linux/orion/image/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/target/linux/orion/image/Makefile b/target/linux/orion/image/Makefile index 073c24f63e..073317fecd 100644 --- a/target/linux/orion/image/Makefile +++ b/target/linux/orion/image/Makefile @@ -8,15 +8,15 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/image.mk define Image/Prepare - cp $(LINUX_DIR)/arch/arm/boot/uImage $(KDIR)/uImage +# +# XXX - FIXME, we hardcode for the WRT350N v2 for now +# + echo -en "\x61\x70\xa0\xe3\x06\x7c\x87\xe3" > $(KDIR)/uImage + cat $(LINUX_DIR)/arch/arm/boot/uImage >> $(KDIR)/uImage endef define Image/BuildKernel cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage -# -# XXX - FIXME -# -# BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/arm-magic.sh endef define Image/Build @@ -26,7 +26,7 @@ endef define Image/Build/squashfs $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) ( \ - dd if=$(LINUX_DIR)/arch/arm/boot/uImage bs=1024k conv=sync; \ + dd if=$(KDIR)/uImage bs=1024k conv=sync; \ dd if=$(KDIR)/root.$(1) bs=128k conv=sync; \ ) > $(BIN_DIR)/openwrt-$(BOARD)-$(1).img endef |