2 # Copyright (C) 2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 include $(TOPDIR
)/rules.mk
8 include $(INCLUDE_DIR
)/image.mk
12 # XXX - FIXME, we hardcode for the WRT350N v2 for now
14 echo
-en
"\x61\x70\xa0\xe3\x06\x7c\x87\xe3" > $(KDIR
)/uImage
15 cat
$(LINUX_DIR
)/arch
/arm
/boot
/uImage
>> $(KDIR
)/uImage
18 define Image
/BuildKernel
19 cp
$(KDIR
)/uImage
$(BIN_DIR
)/openwrt-
$(BOARD
)-uImage
23 $(call Image
/Build
/$(1),$(1))
26 define Image
/Build
/squashfs
27 $(call prepare_generic_squashfs
,$(KDIR
)/root.squashfs
)
29 dd if
=$(KDIR
)/uImage bs
=1024k conv
=sync
; \
30 dd if
=$(KDIR
)/root.
$(1) bs
=128k conv
=sync
; \
31 ) > $(BIN_DIR
)/openwrt-
$(BOARD
)-$(1).img
34 $(eval
$(call BuildImage
))