Module Name: src
Committed By: wiz
Date: Sat Aug 6 11:12:05 UTC 2011
Modified Files:
src/usr.bin/mkubootimage: mkubootimage.c
Log Message:
Add lzma and lzo to usage. From Elie De Brauwer in PR 45219.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/usr.bin/mkubootimage/mkubootimage.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/mkubootimage/mkubootimage.c
diff -u src/usr.bin/mkubootimage/mkubootimage.c:1.11 src/usr.bin/mkubootimage/mkubootimage.c:1.12
--- src/usr.bin/mkubootimage/mkubootimage.c:1.11 Thu Aug 4 04:47:59 2011
+++ src/usr.bin/mkubootimage/mkubootimage.c Sat Aug 6 11:12:05 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: mkubootimage.c,v 1.11 2011/08/04 04:47:59 matt Exp $ */
+/* $NetBSD: mkubootimage.c,v 1.12 2011/08/06 11:12:05 wiz Exp $ */
/*-
* Copyright (c) 2010 Jared D. McNeill <[email protected]>
@@ -30,7 +30,7 @@
#endif
#include <sys/cdefs.h>
-__RCSID("$NetBSD: mkubootimage.c,v 1.11 2011/08/04 04:47:59 matt Exp $");
+__RCSID("$NetBSD: mkubootimage.c,v 1.12 2011/08/06 11:12:05 wiz Exp $");
#include <sys/mman.h>
#include <sys/stat.h>
@@ -212,7 +212,7 @@
usage(void)
{
fprintf(stderr, "usage: mkubootimage -A <arm|mips|mips64|powerpc>");
- fprintf(stderr, " -C <none|gz|bz2>");
+ fprintf(stderr, " -C <none|bz2|gz|lzma|lzo>");
fprintf(stderr, " -O <openbsd|netbsd|freebsd|linux>");
fprintf(stderr, " -T <standalone|kernel|ramdisk|fs>");
fprintf(stderr, " -a <addr> [-e <ep>] [-m <magic>] -n <name>");