diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-05 19:59:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-05 19:59:21 +0000 |
commit | ca56ac4d3415d7f13b07fffcb63d2083b5a761bd (patch) | |
tree | 5ab13adda0661051bec357c3f7e17e33f4e0a27c /sys/arch/alpha/stand/netboot | |
parent | d2f5b445ab0dcd6d009efc7bd7d0315a5fc3b855 (diff) |
remove some stuff to make the blocks slightly smaller. we could go further
still. tested by matthieu
Diffstat (limited to 'sys/arch/alpha/stand/netboot')
-rw-r--r-- | sys/arch/alpha/stand/netboot/netboot.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/arch/alpha/stand/netboot/netboot.c b/sys/arch/alpha/stand/netboot/netboot.c index 5ce9b560a5b..4b49d756230 100644 --- a/sys/arch/alpha/stand/netboot/netboot.c +++ b/sys/arch/alpha/stand/netboot/netboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: netboot.c,v 1.5 2003/06/02 23:27:44 millert Exp $ */ +/* $OpenBSD: netboot.c,v 1.6 2004/07/05 19:59:20 deraadt Exp $ */ /* $NetBSD: netboot.c,v 1.1 1996/09/18 20:03:12 cgd Exp $ */ /* @@ -53,7 +53,7 @@ int loadfile(char *, u_int64_t *); char boot_file[128]; char boot_flags[128]; -extern char bootprog_name[], bootprog_rev[], bootprog_date[], bootprog_maker[]; +extern char bootprog_name[], bootprog_rev[]; vm_offset_t ffp_save, ptbr_save; @@ -68,16 +68,11 @@ main() init_prom_calls(); /* print a banner */ - printf("\n"); - printf("%s, Revision %s\n", bootprog_name, bootprog_rev); - printf("(%s, %s)\n", bootprog_maker, bootprog_date); - printf("\n"); + printf("%s %s\n", bootprog_name, bootprog_rev); /* switch to OSF pal code. */ OSFpal(); - printf("\n"); - prom_getenv(PROM_E_BOOTED_FILE, boot_file, sizeof(boot_file)); prom_getenv(PROM_E_BOOTED_OSFLAGS, boot_flags, sizeof(boot_flags)); |