diff options
author | jhb <jhb@FreeBSD.org> | 2006-05-12 04:09:53 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2006-05-12 04:09:53 +0000 |
commit | 6ecdc538b9c25797d530614005ba47d651b0e448 (patch) | |
tree | a0245777110aa25c49b17dc6babb605f58362897 /sys/boot/common/load_elf.c | |
parent | 42320347d074dcb886f7611f3b29ea1288dc9145 (diff) | |
download | FreeBSD-src-6ecdc538b9c25797d530614005ba47d651b0e448.zip FreeBSD-src-6ecdc538b9c25797d530614005ba47d651b0e448.tar.gz |
Remove more Alpha bits from the boot code including fixing several
stale comments.
Diffstat (limited to 'sys/boot/common/load_elf.c')
-rw-r--r-- | sys/boot/common/load_elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/common/load_elf.c b/sys/boot/common/load_elf.c index 2235ea8..cd983a9 100644 --- a/sys/boot/common/load_elf.c +++ b/sys/boot/common/load_elf.c @@ -266,7 +266,7 @@ __elfN(loadimage)(struct preloaded_file *fp, elf_file_t ef, u_int64_t off) off = - (off & 0xff000000u); /* i386 relocates after locore */ #endif #else - off = 0; /* alpha is direct mapped for kernels */ + off = 0; /* other archs use direct mapped kernels */ #endif } ef->off = off; |