In the parent thread, it was mentioned that "SDK 8.2 uses Linux kernel 5.10. So I would expect that the Y2038 issue is resolved.".
I built SDK8.2 and boot it. Then I typed date command, but date command can't set the year 2039 as shown in the below.
root@mmc-rmu:~# date -s 203801010000 Fri Jan 1 00:00:00 UTC 2038 root@mmc-rmu:~# date -s 203901010000 date: invalid date '203901010000'
Though I checked the busybox's configuration file, "CONFIG_LINUX64=y" was defined.
uegaki@admine330-Precision-3520:~/ex1/rmu/tisdk8/build/arago-tmp-external-arm-glibc/work/armv7at2hf-neon-linux-gnueabi/busybox/1.31.1-r0.arago21.tisdk0/busybox-1.31.1$ grep CONFIG_LINUX .config CONFIG_LINUXRC=y CONFIG_LINUX32=y CONFIG_LINUX64=y
Why did date command failed when 2039 is specified ?
Could you teach me how to solve this issue ?