Fix an error message, and extend it to indicate possible workarounds.
This commit is contained in:
parent
8b2066b7ad
commit
65e53018c2
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: loadbsd.c,v 1.21 1996/08/02 18:00:30 is Exp $ */
|
||||
/* $NetBSD: loadbsd.c,v 1.22 1996/10/13 13:39:52 is Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Michael L. Hitch
|
||||
|
@ -400,7 +400,7 @@ main(argc, argv)
|
|||
if ((void *)kp < fmem) {
|
||||
printf("Kernel at %08lx, Fastmem used at %08lx\n",
|
||||
kp, fmem);
|
||||
errx(20, "Can't copy downwards yet.");
|
||||
errx(20, "Can't copy upwards yet.\nDefragment your memory and try again OR try the -p OR try the -Z options.");
|
||||
}
|
||||
memcpy(kp + ksize + 256, (char *)startit,
|
||||
(char *)startit_end - (char *)startit);
|
||||
|
|
Loading…
Reference in New Issue