mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:20:37 +02:00
61b8a7cdc6
While the disadvantage is less available flash space, it's easy and safe to flash without opening the device. Going back to the original firmware is also possible. This patch add two firmware utilities, mkbrncmdline and mkbrnboot. mkbrncmdline patches the uncompressed kernel so the registeres a0 to a3 are initialized and the memory size is passed in. mkbrnboot takes the lzma compressed kernel and squashfs images and creates a firmware image that can be flashed using the BRN-BOOT recovery kernel, which is booted by holding both buttons when powering up the device and will listen on http://192.168.2.1. The firmware file from bin/lantiq/ to use is openwrt-lantiq-danube-ARV4525PW-BRNDTW502-brnImage The BRN-BOOT recovery kernel does size-check the image, so if it's too big to fit into flash it will complain accordingly. A second patch is needed to make the wired network interface work since there is no u-boot to pre-initialise it. Signed-off-by: Tobias Diedrich <ranma+openwrt@tdiedrich.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30532 3c298f89-4303-0410-b956-a3cf2f4a3e73
67 lines
1.6 KiB
Makefile
67 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME := firmware-utils
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
define cc
|
|
$(HOSTCC) $(HOST_CFLAGS) -include endian.h -o $(HOST_BUILD_DIR)/bin/$(firstword $(1)) $(foreach src,$(1),src/$(src).c) $(2)
|
|
endef
|
|
|
|
define Host/Compile
|
|
mkdir -p $(HOST_BUILD_DIR)/bin
|
|
$(call cc,addpattern)
|
|
$(call cc,trx)
|
|
$(call cc,motorola-bin)
|
|
$(call cc,dgfirmware)
|
|
$(call cc,trx2usr)
|
|
$(call cc,ptgen)
|
|
$(call cc,airlink)
|
|
$(call cc,srec2bin)
|
|
$(call cc,mkmylofw)
|
|
$(call cc,mkcsysimg)
|
|
$(call cc,mkzynfw)
|
|
$(call cc,lzma2eva,-lz)
|
|
$(call cc,mkcasfw)
|
|
$(call cc,mkfwimage,-lz)
|
|
$(call cc,mkfwimage2,-lz)
|
|
$(call cc,imagetag imagetag_cmdline)
|
|
$(call cc,add_header)
|
|
$(call cc,makeamitbin)
|
|
$(call cc,encode_crc)
|
|
$(call cc,nand_ecc)
|
|
$(call cc,mkplanexfw sha1)
|
|
$(call cc,mktplinkfw md5)
|
|
$(call cc,pc1crypt)
|
|
$(call cc,osbridge-crc)
|
|
$(call cc,wrt400n cyg_crc32)
|
|
$(call cc,wndr3700)
|
|
$(call cc,mkdniimg)
|
|
$(call cc,mktitanimg)
|
|
$(call cc,mkchkimg)
|
|
$(call cc,mkzcfw cyg_crc32)
|
|
$(call cc,spw303v)
|
|
$(call cc,trx2edips)
|
|
$(call cc,xorimage)
|
|
$(call cc,buffalo-enc buffalo-lib, -Wall)
|
|
$(call cc,buffalo-tag buffalo-lib, -Wall)
|
|
$(call cc,buffalo-tftp buffalo-lib, -Wall)
|
|
$(call cc,mkwrgimg md5, -Wall)
|
|
$(call cc,mkedimaximg)
|
|
$(call cc,mkbrncmdline)
|
|
$(call cc,mkbrnimg)
|
|
endef
|
|
|
|
define Host/Install
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/* $(STAGING_DIR_HOST)/bin/
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|