Skip to content

Commit

Permalink
sparc: remove obsolete ELF support in piggyback_32.c
Browse files Browse the repository at this point in the history
As we always convert to a.out there is no need to
support ELF.

Removing ELF support because:
- it is not used
- it simplifies code to support a.out only

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Sam Ravnborg authored and David S. Miller committed Jan 5, 2011
1 parent 9c23905 commit 571e08f
Showing 1 changed file with 5 additions and 22 deletions.
27 changes: 5 additions & 22 deletions 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 571e08f

Please sign in to comment.