From: Karel Zak Date: Mon, 12 Jun 2023 10:33:01 +0000 (+0200) Subject: cfdisk: add hint about labels for bootable flag X-Git-Tag: v2.40-rc1~395 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=793e8d2ab81324d0a712132b26ee16c08575101b;p=thirdparty%2Futil-linux.git cfdisk: add hint about labels for bootable flag Addresses: https://github.com/util-linux/util-linux/discussions/2220 Signed-off-by: Karel Zak --- diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c index 5f4de8b487..2e29421d72 100644 --- a/disk-utils/cfdisk.c +++ b/disk-utils/cfdisk.c @@ -1,7 +1,7 @@ /* * cfdisk.c - Display or manipulate a disk partition table. * - * Copyright (C) 2014-2015 Karel Zak + * Copyright (C) 2014-2023 Karel Zak * Copyright (C) 1994 Kevin E. Martin (martin@cs.unc.edu) * * The original cfdisk was inspired by the fdisk program @@ -2257,7 +2257,8 @@ static int ui_help(void) " ", N_("Command Meaning"), N_("------- -------"), - N_(" b Toggle bootable flag of the current partition"), + N_(" b Toggle bootable flag of the current partition;"), + N_(" implemented for DOS (MBR) and SGI labels only"), N_(" d Delete the current partition"), N_(" h Print this screen"), N_(" n Create new partition from free space"), @@ -2281,7 +2282,7 @@ static int ui_help(void) N_("Use lsblk(8) or partx(8) to see more details about the device."), " ", " ", - "Copyright (C) 2014-2017 Karel Zak " + "Copyright (C) 2014-2023 Karel Zak " }; erase();