From e841d6983b3f161a0a8566e8a8b3b18d83e845cf Mon Sep 17 00:00:00 2001 From: Gene Cumm Date: Tue, 27 Jul 2010 18:58:46 -0400 Subject: [PATCH] libinstaller/syslxopt.c: remove unneeded usage text from certain variants. Gert Hulselmans noticed this. --- libinstaller/syslxopt.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) 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" -- 2.7.4