mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
lantiq: fix VG3503J partition table for newer kernels
the kernel has increased and does not fit into the 1,5MB anymore. Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 44391
This commit is contained in:
parent
6bafb2f810
commit
f90d9d486a
@ -28,12 +28,12 @@
|
|||||||
|
|
||||||
partition@20000 {
|
partition@20000 {
|
||||||
label = "kernel";
|
label = "kernel";
|
||||||
reg = <0x20000 0x180000>;
|
reg = <0x20000 0x300000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
partition@1a0000 {
|
partition@1a0000 {
|
||||||
label = "rootfs";
|
label = "rootfs";
|
||||||
reg = <0x1a0000 0x5a0000>;
|
reg = <0x1a0000 0x420000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
partition@740000 {
|
partition@740000 {
|
||||||
|
@ -156,7 +156,7 @@ endif
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/BuildLoader/squashfs
|
define Image/BuildLoader/squashfs
|
||||||
dd if=$(KDIR)/loader-$(2).bin of=$(KDIR)/loader-$(2).bin.padded bs=1536k conv=sync
|
dd if=$(KDIR)/loader-$(2).bin of=$(KDIR)/loader-$(2).bin.padded bs=3072k conv=sync
|
||||||
cat $(KDIR)/loader-$(2).bin.padded $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image
|
cat $(KDIR)/loader-$(2).bin.padded $(KDIR)/root.$(1) > $(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image
|
||||||
$(call prepare_generic_squashfs,$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image)
|
$(call prepare_generic_squashfs,$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(1).image)
|
||||||
endef
|
endef
|
||||||
|
Loading…
Reference in New Issue
Block a user