Re: [PATCH] cmp: Only return success when both files have the same contents

2022-10-03 Thread Daniel Kiper
On Sat, Oct 01, 2022 at 12:44:50AM -0500, Glenn Washburn wrote: > On Thu, 29 Sep 2022 16:00:59 +0200 > Daniel Kiper wrote: > > > On Thu, Aug 25, 2022 at 07:56:29PM -0500, Glenn Washburn wrote: > > > From: Li Gen > > > > > > This allows the cmp command to be used in GRUB scripts to conditionally >

Re: [PATCH] cmp: Only return success when both files have the same contents

2022-09-30 Thread Glenn Washburn
On Thu, 29 Sep 2022 16:00:59 +0200 Daniel Kiper wrote: > On Thu, Aug 25, 2022 at 07:56:29PM -0500, Glenn Washburn wrote: > > From: Li Gen > > > > This allows the cmp command to be used in GRUB scripts to conditionally > > run commands based on whether two files are the same. > > > > Signed-off-b

Re: [PATCH] cmp: Only return success when both files have the same contents

2022-09-29 Thread Daniel Kiper
On Thu, Aug 25, 2022 at 07:56:29PM -0500, Glenn Washburn wrote: > From: Li Gen > > This allows the cmp command to be used in GRUB scripts to conditionally > run commands based on whether two files are the same. > > Signed-off-by: Li Gen > Signed-off-by: Glenn Washburn > --- > grub-core/commands

[PATCH] cmp: Only return success when both files have the same contents

2022-08-25 Thread Glenn Washburn
From: Li Gen This allows the cmp command to be used in GRUB scripts to conditionally run commands based on whether two files are the same. Signed-off-by: Li Gen Signed-off-by: Glenn Washburn --- grub-core/commands/cmp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gr