Files
codezero/tasks/bootdesc/bootdesc.c.append
Bahadir Balban e2b791a3d8 Initial commit
2008-01-13 13:53:52 +00:00

24 lines
400 B
Plaintext

struct bootdesc bootdesc = {
.desc_size = sizeof(struct bootdesc) + sizeof(struct svc_image) * 3,
.total_images = 3,
.images = {
[0] = {
.name = "mm0",
.phys_start = 0x208000,
.phys_end = 0x213140,
},
[1] = {
.name = "test0",
.phys_start = 0x218000,
.phys_end = 0x21aedc,
},
[2] = {
.name = "romfs",
.phys_start = 0x220000,
.phys_end = 0x268800,
},
},
};