2005-06-12 05:18:26 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-08-14 23:00:56 +08:00
|
|
|
KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)
|
2005-06-12 05:18:26 +08:00
|
|
|
|
|
|
|
lzma-loader-clean:
|
|
|
|
$(MAKE) -C lzma-loader clean
|
|
|
|
|
|
|
|
lzma-loader-prepare:
|
|
|
|
$(MAKE) -C lzma-loader prepare
|
|
|
|
|
|
|
|
lzma-loader-compile: lzma-loader-prepare
|
|
|
|
$(MAKE) -C lzma-loader compile
|
|
|
|
|
2005-08-14 23:00:56 +08:00
|
|
|
ifeq ($(IB),)
|
2005-06-12 05:18:26 +08:00
|
|
|
$(KDIR)/vmlinux.lzma: $(KDIR)/vmlinux
|
|
|
|
cat $^ | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $@ || (rm -f $@ && false)
|
|
|
|
|
2005-10-22 05:07:10 +08:00
|
|
|
$(KDIR)/loader.tmp.gz: compile
|
|
|
|
$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).trx: $(KDIR)/vmlinux.lzma
|
2005-08-14 23:00:56 +08:00
|
|
|
endif
|
|
|
|
|
2005-06-13 22:39:56 +08:00
|
|
|
ifeq ($(FS),jffs2-8MB)
|
|
|
|
TRXALIGN:=-a 0x20000
|
|
|
|
endif
|
|
|
|
ifeq ($(FS),jffs2-4MB)
|
|
|
|
TRXALIGN:=-a 0x10000
|
|
|
|
endif
|
2005-08-14 23:00:56 +08:00
|
|
|
$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).trx:
|
2005-06-13 22:39:56 +08:00
|
|
|
$(STAGING_DIR)/bin/trx -o $@ $(BUILD_DIR)/loader.gz $(KDIR)/vmlinux.lzma $(TRXALIGN) $(KDIR)/root.$(FS)
|
|
|
|
|
2005-08-29 18:47:33 +08:00
|
|
|
ifeq ($(KERNEL),2.6)
|
|
|
|
FSNAME:=$(patsubst jffs2-%,jffs2,$(FS))
|
|
|
|
|
2005-09-16 18:12:08 +08:00
|
|
|
ifneq ($(FS),jffs2-4MB)
|
2005-09-11 00:34:08 +08:00
|
|
|
$(BIN_DIR)/openwrt-wgt634u-$(KERNEL)-$(FSNAME).bin: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).trx
|
2005-09-04 01:57:21 +08:00
|
|
|
dd if=$(BUILD_DIR)/loader.elf of=$@ bs=131072 conv=sync
|
2005-08-29 18:47:33 +08:00
|
|
|
cat $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).trx >> $@
|
|
|
|
|
2005-09-11 00:34:08 +08:00
|
|
|
install: $(BIN_DIR)/openwrt-wgt634u-$(KERNEL)-$(FSNAME).bin
|
2005-08-29 18:47:33 +08:00
|
|
|
endif
|
2005-09-16 18:12:08 +08:00
|
|
|
endif
|
2005-06-12 05:18:26 +08:00
|
|
|
|
|
|
|
ifeq ($(KERNEL),2.4)
|
|
|
|
FSNAME:=$(patsubst jffs2-%,jffs2,$(FS))
|
|
|
|
|
2005-10-22 05:07:10 +08:00
|
|
|
ifeq ($(FS),squashfs)
|
|
|
|
$(BIN_DIR)/openwrt-wap54g-$(FSNAME).trx: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).trx
|
|
|
|
cp $< $@
|
|
|
|
echo -ne '\x01' >> $@
|
|
|
|
|
|
|
|
install: $(BIN_DIR)/openwrt-wap54g-$(FSNAME).trx
|
|
|
|
endif
|
|
|
|
|
2005-06-12 05:18:26 +08:00
|
|
|
ifneq ($(FS),jffs2-8MB)
|
2005-08-14 23:00:56 +08:00
|
|
|
$(BIN_DIR)/openwrt-wrt54g-$(FSNAME).bin: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).trx
|
2005-08-13 20:38:47 +08:00
|
|
|
$(STAGING_DIR)/bin/addpattern -4 -p W54G -v v4.20.6 -i $< -o $@ -g
|
2005-06-12 05:18:26 +08:00
|
|
|
|
2005-10-22 05:07:10 +08:00
|
|
|
$(BIN_DIR)/openwrt-wrt54gs_v4-$(FSNAME).bin: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).trx
|
|
|
|
$(STAGING_DIR)/bin/addpattern -4 -p W54s -v v1.05.0 -i $< -o $@ -g
|
|
|
|
|
|
|
|
install: $(BIN_DIR)/openwrt-wrt54g-$(FSNAME).bin $(BIN_DIR)/openwrt-wrt54gs_v4-$(FSNAME).bin
|
2005-06-12 05:18:26 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(FS),jffs2-4MB)
|
2005-08-14 23:00:56 +08:00
|
|
|
$(BIN_DIR)/openwrt-wrt54gs-$(FSNAME).bin: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).trx
|
2005-08-13 20:38:47 +08:00
|
|
|
$(STAGING_DIR)/bin/addpattern -4 -p W54S -v v4.70.6 -i $< -o $@ -g
|
2005-06-12 05:18:26 +08:00
|
|
|
|
|
|
|
install: $(BIN_DIR)/openwrt-wrt54gs-$(FSNAME).bin
|
|
|
|
endif
|
|
|
|
|
2005-08-14 23:00:56 +08:00
|
|
|
$(BIN_DIR)/openwrt-motorola-$(FS).bin: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).trx
|
2005-06-12 05:18:26 +08:00
|
|
|
$(STAGING_DIR)/bin/motorola-bin $< $@
|
|
|
|
install: $(BIN_DIR)/openwrt-motorola-$(FS).bin
|
|
|
|
endif
|
|
|
|
|
2005-08-14 23:00:56 +08:00
|
|
|
ifeq ($(IB),)
|
2005-06-12 05:18:26 +08:00
|
|
|
clean: lzma-loader-clean
|
|
|
|
prepare: lzma-loader-prepare
|
|
|
|
compile: lzma-loader-compile
|
2005-08-14 23:00:56 +08:00
|
|
|
else
|
|
|
|
clean:
|
|
|
|
prepare:
|
|
|
|
compile:
|
|
|
|
endif
|
2005-08-15 04:31:12 +08:00
|
|
|
install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).trx
|
2005-08-14 23:00:56 +08:00
|
|
|
install-ib:
|
|
|
|
mkdir -p $(IB_DIR)/staging_dir_$(ARCH)/bin
|
2005-09-02 04:08:18 +08:00
|
|
|
cp -fpR $(STAGING_DIR)/bin/addpattern $(STAGING_DIR)/bin/trx $(STAGING_DIR)/bin/motorola-bin $(IB_DIR)/staging_dir_$(ARCH)/bin
|
2005-08-14 23:00:56 +08:00
|
|
|
mkdir -p $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD)
|
2005-09-02 04:08:18 +08:00
|
|
|
cp -fpR $(BUILD_DIR)/loader.gz $(IB_DIR)/build_$(ARCH)/
|
|
|
|
cp -fpR $(KDIR)/vmlinux.lzma $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD)/
|