Re: [PATCH v2 1/2] datetime: Support dates outside of 1901..2038 range

2025-04-17 Thread Andrew Hamilton
Hi Vladimir, I can make an attempt at addressing Daniel's comments if that's okay - any objections? Thanks, Andrew On Thu, Dec 19, 2024 at 11:34 AM Andrew Hamilton wrote: > Just checking on this again. I know people are busy so understand. > > Thanks, > Andrew > > On Sat, Oct 26, 2024 at 10:00

Re: [PATCH v2 1/2] datetime: Support dates outside of 1901..2038 range

2024-12-19 Thread Andrew Hamilton
Just checking on this again. I know people are busy so understand. Thanks, Andrew On Sat, Oct 26, 2024 at 10:00 AM Andrew Hamilton wrote: > Just checking if this was still on the radar, seems mostly comment and > type changes so maybe a relatively minor update? > > If any help is needed to make

Re: [PATCH v2 1/2] datetime: Support dates outside of 1901..2038 range

2024-10-26 Thread Andrew Hamilton
Just checking if this was still on the radar, seems mostly comment and type changes so maybe a relatively minor update? If any help is needed to make the adjustments let me know and I can help. Thanks, Andrew On Mon, Sep 2, 2024 at 11:14 AM Daniel Kiper wrote: > On Sat, Aug 17, 2024 at 08:30:2

Re: [PATCH v2 1/2] datetime: Support dates outside of 1901..2038 range

2024-09-02 Thread Daniel Kiper
On Sat, Aug 17, 2024 at 08:30:22PM +0300, Vladimir Serbinenko wrote: > Signed-off-by: Vladimir Serbinenko > --- > grub-core/lib/datetime.c | 31 --- > include/grub/datetime.h | 15 +++ > 2 files changed, 31 insertions(+), 15 deletions(-) > > diff --git a/g

Re: [PATCH v2 1/2] datetime: Support dates outside of 1901..2038 range

2024-08-17 Thread Andrew Hamilton
Thank you for doing this, it worked perfectly for me when I tested it on x86-64 in a VM. Testing performed: 1. Set various files on FAT32 and Ext4 file systems with various dates in the future (2038, 2040, 2100, etc.) and confirmed correct date / time display via GRUB 'ls' command. 2. Ran your pro

[PATCH v2 1/2] datetime: Support dates outside of 1901..2038 range

2024-08-17 Thread Vladimir Serbinenko
Signed-off-by: Vladimir Serbinenko --- grub-core/lib/datetime.c | 31 --- include/grub/datetime.h | 15 +++ 2 files changed, 31 insertions(+), 15 deletions(-) diff --git a/grub-core/lib/datetime.c b/grub-core/lib/datetime.c index 9120128ca..e4bdc5c4f 1006