[PANDORA] Fixed OpenPandora build
Some checks failed
Build and Release Box86 / build (ubuntu-20.04, TEGRAX1, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-20.04, TEGRAX1, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-20.04, TEGRAX1ARM32, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-20.04, TEGRAX1ARM32, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, A64, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, A64, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, ADLINK, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, ADLINK, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, ANDROID, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, ANDROID, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, GAMESHELL, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, GAMESHELL, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, I386, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, I386, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, ODROIDXU4, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, ODROIDXU4, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, OTHER_ARM, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, OTHER_ARM, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, PANDORA, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, PANDORA, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, PHYTIUM, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, PHYTIUM, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, PYRA, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, PYRA, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, RK3288, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, RK3288, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, RK3399, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, RK3399, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, RPI4, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, RPI4, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, RPI4ARM64, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, RPI4ARM64, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, SD845, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, SD845, Trace) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, SD888, Release) (push) Failing after 0s
Build and Release Box86 / build (ubuntu-latest, SD888, Trace) (push) Failing after 0s

This commit is contained in:
ptitSeb 2024-09-13 17:59:35 +02:00
parent fc43e4c22b
commit f97763cacd
2 changed files with 5 additions and 3 deletions

View File

@ -938,7 +938,7 @@ void UnalignStat(const void* source, void* dest)
i386st->st_size = st->st_size;
i386st->st_blksize = st->st_blksize;
i386st->st_blocks = st->st_blocks;
#if defined(__USE_XOPEN2K8) || defined(ANDROID)
#if defined(__USE_XOPEN2K8) || defined(ANDROID) || defined(PANDORA)
i386st->st_atime_sec = st->st_atim.tv_sec;
i386st->st_atime_nsec = st->st_atim.tv_nsec;
i386st->st_mtime_sec = st->st_mtim.tv_sec;
@ -970,7 +970,9 @@ void UnalignStatFS(const void* source, void* dest)
memcpy(&i386st->f_fsid, &st->f_fsid, sizeof(i386st->f_fsid));
i386st->f_namelen = st->f_namelen;
i386st->f_frsize = st->f_frsize;
#ifndef PANDORA
i386st->f_flags = st->f_flags;
#endif
i386st->f_spare[0] = st->f_spare[0];
i386st->f_spare[1] = st->f_spare[1];
i386st->f_spare[2] = st->f_spare[2];

View File

@ -39,7 +39,7 @@ void UnalignStat64(const void* source, void* dest)
i386st->st_size = st->st_size;
i386st->st_blksize = st->st_blksize;
i386st->st_blocks = st->st_blocks;
#if defined(__USE_XOPEN2K8) || defined(ANDROID)
#if defined(__USE_XOPEN2K8) || defined(ANDROID) || defined(PANDORA)
i386st->st_atime = st->st_atim.tv_sec;
i386st->st_atime_nsec = st->st_atim.tv_nsec;
i386st->st_mtime = st->st_mtim.tv_sec;
@ -76,7 +76,7 @@ void AlignStat64(const void* source, void* dest)
st->st_size = i386st->st_size;
st->st_blksize = i386st->st_blksize;
st->st_blocks = i386st->st_blocks;
#if defined(__USE_XOPEN2K8) || defined(ANDROID)
#if defined(__USE_XOPEN2K8) || defined(ANDROID) || defined(PANDORA)
st->st_atim.tv_sec = i386st->st_atime;
st->st_atim.tv_nsec = i386st->st_atime_nsec;
st->st_mtim.tv_sec = i386st->st_mtime;