1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-18 22:43:53 +01:00

fixup machid workaround, generate uImage manually

SVN-Revision: 11497
This commit is contained in:
Imre Kaloz 2008-06-16 12:38:55 +00:00
parent 79bd4016bc
commit e147bf8fa3
2 changed files with 5 additions and 4 deletions

@ -15,8 +15,6 @@ LINUX_VERSION:=2.6.26-rc6
include $(INCLUDE_DIR)/target.mk
KERNELNAME:="uImage"
DEFAULT_PACKAGES += kmod-madwifi
define Kernel/Configure

@ -11,11 +11,14 @@ define Image/Prepare
#
# 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
echo -en "\x61\x70\xa0\xe3\x06\x7c\x87\xe3" > $(KDIR)/zImage
cat $(LINUX_DIR)/arch/arm/boot/zImage >> $(KDIR)/zImage
endef
define Image/BuildKernel
$(STAGING_DIR_HOST)/bin/mkimage -A arm -O linux -T kernel \
-C none -a 0x00008000 -e 0x00008000 -n 'Linux-$(LINUX_VERSION)' \
-d $(KDIR)/zImage $(KDIR)/uImage
cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage
endef