2 * Makes a tree bootable image for IBM Evaluation boards.
3 * Basically, just take a zImage, skip the ELF header, and stuff
4 * a 32 byte header on the front.
6 * We use htonl, which is a network macro, to make sure we're doing
7 * The Right Thing on an LE machine. It's non-obvious, but it should
8 * work on anything BSD'ish.
17 #include <netinet/in.h>
24 /* This gets tacked on the front of the image. There are also a few
25 * bytes allocated after the _start label used by the boot rom (see
26 * head.S for details).
28 typedef struct boot_block
{
29 uint32_t bb_magic
; /* 0x0052504F */
30 uint32_t bb_dest
; /* Target address of the image */
31 uint32_t bb_num_512blocks
; /* Size, rounded-up, in 512 byte blks */
32 uint32_t bb_debug_flag
; /* Run debugger or image after load */
33 uint32_t bb_entry_point
; /* The image address to start */
34 uint32_t bb_checksum
; /* 32 bit checksum including header */
41 int main(int argc
, char *argv
[])
50 fprintf(stderr
, "usage: %s <zImage-file> <boot-image> [entry-point]\n",argv
[0]);
54 if (stat(argv
[1], &st
) < 0) {
59 nblks
= (st
.st_size
+ IMGBLK
) / IMGBLK
;
61 bt
.bb_magic
= htonl(0x0052504F);
63 /* If we have the optional entry point parameter, use it */
65 bt
.bb_dest
= bt
.bb_entry_point
= htonl(strtoul(argv
[3], NULL
, 0));
67 bt
.bb_dest
= bt
.bb_entry_point
= htonl(0x500000);
69 /* We know these from the linker command.
70 * ...and then move it up into memory a little more so the
71 * relocation can happen.
73 bt
.bb_num_512blocks
= htonl(nblks
);
78 /* To be neat and tidy :-).
83 if ((in_fd
= open(argv
[1], O_RDONLY
)) < 0) {
84 perror("zImage open");
88 if ((out_fd
= open(argv
[2], (O_RDWR
| O_CREAT
| O_TRUNC
), 0666)) < 0) {
89 perror("bootfile open");
95 for (i
=0; i
<sizeof(bt
)/sizeof(uint
); i
++)
98 /* Assume zImage is an ELF file, and skip the 64K header.
100 if (read(in_fd
, tmpbuf
, IMGBLK
) != IMGBLK
) {
101 fprintf(stderr
, "%s is too small to be an ELF image\n",
106 if ((*(uint
*)tmpbuf
) != htonl(0x7f454c46)) {
107 fprintf(stderr
, "%s is not an ELF image\n", argv
[1]);
111 if (lseek(in_fd
, (64 * 1024), SEEK_SET
) < 0) {
112 fprintf(stderr
, "%s failed to seek in ELF image\n", argv
[1]);
116 nblks
-= (64 * 1024) / IMGBLK
;
118 /* And away we go......
120 if (write(out_fd
, &bt
, sizeof(bt
)) != sizeof(bt
)) {
121 perror("boot-image write");
125 while (nblks
-- > 0) {
126 if (read(in_fd
, tmpbuf
, IMGBLK
) < 0) {
127 perror("zImage read");
131 for (i
=0; i
<sizeof(tmpbuf
)/sizeof(uint
); i
++)
133 if (write(out_fd
, tmpbuf
, sizeof(tmpbuf
)) != sizeof(tmpbuf
)) {
134 perror("boot-image write");
139 /* rewrite the header with the computed checksum.
141 bt
.bb_checksum
= htonl(cksum
);
142 if (lseek(out_fd
, 0, SEEK_SET
) < 0) {
143 perror("rewrite seek");
146 if (write(out_fd
, &bt
, sizeof(bt
)) != sizeof(bt
)) {
147 perror("boot-image rewrite");