Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 225727
b: refs/heads/master
c: 571e08f
h: refs/heads/master
i:
  225725: 728de00
  225723: 52010c8
  225719: 92f35e6
  225711: 5c2f5ec
  225695: 8e35344
  225663: 1bc7c3a
v: v3
  • Loading branch information
Sam Ravnborg authored and David S. Miller committed Jan 5, 2011
1 parent 583e24f commit a0239e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 23 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9c239053045568abf960b01e4eb2c7205e3cd7d6
refs/heads/master: 571e08f6e2ddd6ec5d547358f55342726c063072
27 changes: 5 additions & 22 deletions trunk/arch/sparc/boot/piggyback_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,6 @@ static unsigned short ld2(char *p)
return (p[0] << 8) | p[1];
}

/* read 4 bytes as big endian */
static unsigned int ld4(char *p)
{
return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3];
}

/* save 4 bytes as big endian */
static void st4(char *p, unsigned int x)
{
Expand Down Expand Up @@ -130,7 +124,7 @@ int main(int argc,char **argv)
{
static char aout_magic[] = { 0x01, 0x03, 0x01, 0x07 };
char buffer[1024], *q, *r;
unsigned int i, j, k, start, end, offset;
unsigned int i, start, end, offset;
struct stat s;
int image, tail;

Expand All @@ -147,21 +141,10 @@ int main(int argc,char **argv)
die(argv[1]);
if (read(image, buffer, 512) != 512)
die(argv[1]);
if (memcmp (buffer, "\177ELF", 4) == 0) {
q = buffer + ld4(buffer + 28);
i = ld4(q + 4) + ld4(buffer + 24) - ld4(q + 8);
if (lseek(image, i, 0) < 0)
die("lseek");
if (read(image, buffer, 512) != 512)
die(argv[1]);
j = 0;
} else if (memcmp(buffer, aout_magic, 4) == 0) {
i = j = AOUT_TEXT_OFFSET;
} else {
fprintf (stderr, "Not ELF nor a.out. Don't blame me.\n");
if (memcmp(buffer, aout_magic, 4) != 0) {
fprintf (stderr, "Not a.out. Don't blame me.\n");
exit(1);
}
k = i;
/*
* We need to fill in values for sparc_ramdisk_image + sparc_ramdisk_size
* To locate these symbols search for the "HdrS" text which appear
Expand All @@ -170,7 +153,7 @@ int main(int argc,char **argv)
*/

/* Find the gokernel label */
i += (ld2(buffer + j + 2) << 2) - 512;
i = AOUT_TEXT_OFFSET + (ld2(buffer + AOUT_TEXT_OFFSET + 2) << 2) - 512;
if (lseek(image, i, 0) < 0)
die("lseek");
if (read(image, buffer, 1024) != 1024)
Expand Down Expand Up @@ -203,7 +186,7 @@ int main(int argc,char **argv)
die(argv[1]);

/* seek page aligned boundary in the image file and add boot image */
if (lseek(image, k - start + ((end + 32 + 4095) & ~4095), 0) < 0)
if (lseek(image, AOUT_TEXT_OFFSET - start + ((end + 32 + 4095) & ~4095), 0) < 0)
die("lseek");
if ((tail = open(argv[3],O_RDONLY)) < 0)
die(argv[3]);
Expand Down

0 comments on commit a0239e4

Please sign in to comment.