summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbencollins <tailor@grayson>2001-06-18 16:16:53 -0400
committerBen Collins <bcollins@ubuntu.com>2006-06-01 13:18:07 -0400
commite81b7c6e5dde2523cc7bd539272a865a41ea2d59 (patch)
tree5322fcd848e359f989499295630fffd9e7d7bf1e
parentc4ae672f295f77da93da00d1d4fb3761a929d17d (diff)
downloadsilo-e81b7c6e5dde2523cc7bd539272a865a41ea2d59.tar.gz
[silo @ 42]
* silo/silo.c: Fix suggested options to genromfs, patch from Pieter Krul. Also fix email address for error on filesystem holes.#
-rw-r--r--ChangeLog5
-rw-r--r--silo/silo.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3a39861..4a83864 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Jun 18 12:14:58 EDT 2001 Ben Collins <bcollins@debian.org>
+
+ * silo/silo.c: Fix suggested options to genromfs, patch from Pieter
+ Krul. Also fix email address for error on filesystem holes.
+
Sat Jun 16 13:38:56 EDT 2001 Ben Collins <bcollins@debian.org>
* Makefile: Cleanups.
diff --git a/silo/silo.c b/silo/silo.c
index 8b27f5b..0f3e5aa 100644
--- a/silo/silo.c
+++ b/silo/silo.c
@@ -368,7 +368,7 @@ again:
if (p) p++; else p = name;
start = (long)st.st_ino + 16 + ((strlen(p) + 16) & ~15);
if (start & 511)
- fatal ("File %s on romfs not aligned on 512B boundary. Use genromfs -a -r to generate the image", name);
+ fatal ("File %s on romfs not aligned on 512B boundary. Use genromfs -a to generate the image", name);
start = hwdev->doff + start / 512;
if (flash_image) start += 1024 / 512; /* make room for ieee32 */
for (j = 0; j * 512 < size; j++)
@@ -383,7 +383,7 @@ again:
break;
if (!block) {
if ((j << 9) < size)
- fatal ("Filesystem holes are not yet supported for second stage loader. Mail jj@sunsite.mff.cuni.cz");
+ fatal ("Filesystem holes are not yet supported for second stage loader. Mail silo-general@lists.sourceforge.net");
else
break;
}