Latest patch did not compile
Posted: Mon Oct 30, 2006 4:34 pm
I use latest patch (grsecurity-2.1.9-2.6.18.1-200610281533.patch) with vanilla 2.6.18.1 kernel and I get these error messages:
The fix is simple: Your patch removed the declaration in module.h so it failes here.
Just in case...
Quix0r
Edit:
Add this code in somewhere around line 295 (include/linux/module.h)
This may fix it again.
kernel/module.c:1142: error: structure has no member named `module_core'
kernel/module.c:1142: error: structure has no member named `core_size'
The fix is simple: Your patch removed the declaration in module.h so it failes here.
Just in case...
Quix0r
Edit:
Add this code in somewhere around line 295 (include/linux/module.h)
- Code: Select all
void *module_core;
unsigned long init_size, core_size;
This may fix it again.