From: Gene Cumm Date: Tue, 27 Jul 2010 22:58:46 +0000 (-0400) Subject: libinstaller/syslxopt.c: remove unneeded usage text from certain variants. X-Git-Tag: syslinux-4.03-pre1~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e841d6983b3f161a0a8566e8a8b3b18d83e845cf;p=platform%2Fupstream%2Fsyslinux.git libinstaller/syslxopt.c: remove unneeded usage text from certain variants. Gert Hulselmans noticed this. --- diff --git a/libinstaller/syslxopt.c b/libinstaller/syslxopt.c index 18a6baa..786e3d7 100644 --- a/libinstaller/syslxopt.c +++ b/libinstaller/syslxopt.c @@ -113,10 +113,17 @@ void __attribute__ ((noreturn)) usage(int rv, enum syslinux_mode mode) mode == MODE_SYSLINUX ? " " : "-o"); /* Have to chop this roughly in half for the DOS installer for some reason */ fprintf(stderr, - " --menu-save= -M Set the label to select as default on the next boot\n" + " --menu-save= -M Set the label to select as default on the next boot\n"); + switch (mode) { + case MODE_SYSLINUX_DOSWIN: + fprintf(stderr, " --mbr -m Install an MBR (DOS/Win32 installers only)\n" - " --active -a Mark partition as active (DOS/Win32 installers only)\n" - " --force -f Ignore precautions (DOS/Win32/mtools installers only)\n" + " --active -a Mark partition as active (DOS/Win32 installers only)\n"); + case MODE_SYSLINUX: + fprintf(stderr, + " --force -f Ignore precautions (DOS/Win32/mtools installers only)\n"); + } + fprintf(stderr, "\n" " Note: geometry is determined at boot time for devices which\n" " are considered hard disks by the BIOS. Unfortunately, this is\n"