1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-23 16:17:28 +02:00

firmware-utils/mkfwimage: fix root_start values

SVN-Revision: 13874
This commit is contained in:
Gabor Juhos 2009-01-05 12:35:51 +00:00
parent 3db174e41e
commit 50c19eee3f

View File

@ -46,7 +46,7 @@ fw_layout_t fw_layout_data[] = {
.name = "XS2",
.kern_start = 0xbfc30000,
.kern_len = 0x00140000,
.root_start = 0xbfc30000,
.root_start = 0xbfc30000 + 0x00140000,
.root_len = 0x002C0000,
.kern_entry = 0x80041000,
.firmware_max_length= 0x00390000,
@ -55,7 +55,7 @@ fw_layout_t fw_layout_data[] = {
.name = "XS5",
.kern_start = 0xbe030000,
.kern_len = 0x00140000,
.root_start = 0xbe030000,
.root_start = 0xbe030000 + 0x00140000,
.root_len = 0x002C0000,
.kern_entry = 0x80041000,
.firmware_max_length= 0x00390000,