Don't depend upon the kernel load address being 0xf0100000.

This commit is contained in:
Tor Egge 1997-06-24 15:56:41 +00:00
parent f4863d1a23
commit ba7fe0d6df
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=26895

View File

@ -9,7 +9,7 @@
* Copyright (C) 1993 Hannu Savolainen
* Ported to 386bsd by Serge Vakulenko
* based on tools/build.c by Linus Torvalds
* $Id: kzip.c,v 1.7 1997/02/22 19:55:31 peter Exp $
* $Id: kzip.c,v 1.8 1997/03/29 04:30:19 imp Exp $
*
*/
@ -93,7 +93,7 @@ main(int argc, char **argv)
}
size = hdr.a_text + hdr.a_data + hdr.a_bss;
entry = hdr.a_entry - 0xf0000000; /* replace KZBASE */
entry = hdr.a_entry & 0x00FFFFFF;
lseek (fdi, 0, SEEK_SET);