Skip to content
Snippets Groups Projects
Commit 8e791ccc authored by juhosg's avatar juhosg
Browse files

[tools] firmware-utils/mkfwimage: fix root_start values

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13874 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent c3f5fad3
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment