This commit is contained in:
2021-11-03 10:49:59 +01:00
parent 7c2e64d9fe
commit 1da2761654
12 changed files with 15 additions and 11 deletions

View File

@ -188,7 +188,9 @@ int checkKernelVersion() {
#ifdef VIRTUAL
return OK;
#endif
return validateKernelVersion(KERNEL_DATE_VRSN);
char buf[255] = {0};
strcpy(buf, KERNEL_DATE_VRSN);
return validateKernelVersion(buf);
}
int checkType() {