projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[package] mac80211: update compat-wireless to 2009-03-09
[openwrt.git]
/
tools
/
firmware-utils
/
src
/
mkfwimage.c
diff --git
a/tools/firmware-utils/src/mkfwimage.c
b/tools/firmware-utils/src/mkfwimage.c
index
0a2f74e
..
8e505d7
100644
(file)
--- a/
tools/firmware-utils/src/mkfwimage.c
+++ b/
tools/firmware-utils/src/mkfwimage.c
@@
-34,9
+34,6
@@
typedef struct fw_layout_data {
char name[PATH_MAX];
u_int32_t kern_start;
typedef struct fw_layout_data {
char name[PATH_MAX];
u_int32_t kern_start;
- u_int32_t kern_len;
- u_int32_t root_start;
- u_int32_t root_len;
u_int32_t kern_entry;
u_int32_t firmware_max_length;
} fw_layout_t;
u_int32_t kern_entry;
u_int32_t firmware_max_length;
} fw_layout_t;
@@
-45,29
+42,20
@@
fw_layout_t fw_layout_data[] = {
{
.name = "XS2",
.kern_start = 0xbfc30000,
{
.name = "XS2",
.kern_start = 0xbfc30000,
- .kern_len = 0x00140000,
- .root_start = 0xbfc30000 + 0x00140000,
- .root_len = 0x002C0000,
.kern_entry = 0x80041000,
.firmware_max_length= 0x00390000,
},
{
.name = "XS5",
.kern_start = 0xbe030000,
.kern_entry = 0x80041000,
.firmware_max_length= 0x00390000,
},
{
.name = "XS5",
.kern_start = 0xbe030000,
- .kern_len = 0x00140000,
- .root_start = 0xbe030000 + 0x00140000,
- .root_len = 0x002C0000,
.kern_entry = 0x80041000,
.firmware_max_length= 0x00390000,
},
{
.name = "RS",
.kern_entry = 0x80041000,
.firmware_max_length= 0x00390000,
},
{
.name = "RS",
- .kern_start = 0x00000000,
- .kern_len = 0x00140000,
- .root_start = 0x00000000,
- .root_len = 0x002C0000,
+ .kern_start = 0xbf030000,
.kern_entry = 0x80060000,
.kern_entry = 0x80060000,
- .firmware_max_length= 0x00
140000 + 0x002C
0000,
+ .firmware_max_length= 0x00
64
0000,
},
{ .name = "",
},
},
{ .name = "",
},
@@
-243,14
+231,14
@@
static int create_image_layout(const char* kernelfile, const char* rootfsfile, c
strcpy(rootfs->partition_name, "rootfs");
rootfs->partition_index = 2;
strcpy(rootfs->partition_name, "rootfs");
rootfs->partition_index = 2;
- rootfs->partition_baseaddr =
p->root_start
;
+ rootfs->partition_baseaddr =
kernel->partition_baseaddr + kernel->partition_length
;
rootfs->partition_length = p->firmware_max_length - kernel->partition_length;
rootfs->partition_memaddr = 0x00000000;
rootfs->partition_entryaddr = 0x00000000;
strncpy(rootfs->filename, rootfsfile, sizeof(rootfs->filename));
rootfs->partition_length = p->firmware_max_length - kernel->partition_length;
rootfs->partition_memaddr = 0x00000000;
rootfs->partition_entryaddr = 0x00000000;
strncpy(rootfs->filename, rootfsfile, sizeof(rootfs->filename));
-printf("kernel: %d
%d
\n", kernel->partition_length, kernel->partition_baseaddr);
-printf("root: %d
%d
\n", rootfs->partition_length, rootfs->partition_baseaddr);
+printf("kernel: %d
0x%08x
\n", kernel->partition_length, kernel->partition_baseaddr);
+printf("root: %d
0x%08x
\n", rootfs->partition_length, rootfs->partition_baseaddr);
im->part_count = 2;
return 0;
im->part_count = 2;
return 0;
This page took
0.028314 seconds
and
4
git commands to generate.