diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-07-11 17:15:30 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-07-11 17:15:30 +0000 |
commit | abd419a7df4261f561f7991d761741e8fc072839 (patch) | |
tree | a2fc2c7953b38ad6c92020615c9562744835df68 | |
parent | 2dc230d260b378fda69cb5d7f8b0cfa9e81e9e1d (diff) | |
download | upstream-abd419a7df4261f561f7991d761741e8fc072839.tar.gz upstream-abd419a7df4261f561f7991d761741e8fc072839.tar.bz2 upstream-abd419a7df4261f561f7991d761741e8fc072839.zip |
increase size of the kernel partition on the TEW-632BR board
SVN-Revision: 16784
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c | 6 | ||||
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c index c3fc2b212d..afb8ceebd5 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-tew-632brp.c @@ -44,11 +44,11 @@ static struct mtd_partition tew_632brp_partitions[] = { } , { .name = "kernel", .offset = 0x030000, - .size = 0x0c0000, + .size = 0x0d0000, } , { .name = "rootfs", - .offset = 0x0f0000, - .size = 0x300000, + .offset = 0x100000, + .size = 0x2f0000, } , { .name = "art", .offset = 0x3f0000, diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index 17d20dfa50..b4e433e9c4 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -61,9 +61,9 @@ define Image/Build/AP81 cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(2) $(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR)/vmlinux-$(2) '$(strip $(3))' $(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux-$(2) $(KDIR)/vmlinux-$(2).bin.lzma - if [ `stat -c%s "$(KDIR)/vmlinux-$(2).bin.lzma"` -gt 786432 ]; then \ + if [ `stat -c%s "$(KDIR)/vmlinux-$(2).bin.lzma"` -gt 851968 ]; then \ echo "Warning: $(KDIR)/vmlinux-$(2).bin.lzma is too big"; \ - else if [ `stat -c%s $(KDIR)/root.$(1)` -gt 3080192 ]; then \ + else if [ `stat -c%s $(KDIR)/root.$(1)` -gt 3014656 ]; then \ echo "Warning: $(KDIR)/root.$(1) is too big"; \ else \ mkimage -A mips -O linux -T kernel -a 0x80060000 -C lzma -e \ @@ -71,8 +71,8 @@ define Image/Build/AP81 -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \ -d $(KDIR)/vmlinux-$(2).bin.lzma $(KDIR)/vmlinux-$(2).uImage; \ ( \ - dd if=$(KDIR)/vmlinux-$(2).uImage bs=768k conv=sync; \ - dd if=$(KDIR)/root.$(1) bs=3008k conv=sync; \ + dd if=$(KDIR)/vmlinux-$(2).uImage bs=832k conv=sync; \ + dd if=$(KDIR)/root.$(1) bs=2944k conv=sync; \ echo -n $(4); \ ) > $(call imgname,$(1),$(2)).uni; \ fi; fi |