| 6 | |
| 7 | Bascially probably anything that identifies itself as being |
| 8 | an offspring from RHEL 8.2 and following stuff after 8.2 (eg. 8.3) |
| 9 | |
| 10 | {{{ |
| 11 | cat /usr/include/linux/version.h |
| 12 | #define LINUX_VERSION_CODE 266752 |
| 13 | #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |
| 14 | #define RHEL_MAJOR 8 |
| 15 | #define RHEL_MINOR 2 |
| 16 | #define RHEL_RELEASE_VERSION(a,b) (((a) << 8) + (b)) |
| 17 | #define RHEL_RELEASE_CODE 2050 |
| 18 | #define RHEL_RELEASE "187" |
| 19 | #define KERNEL_HEADERS_CHECKSUM "59ee2375de06c07c3ddd1235199be5685530a2ce" |
| 20 | |
| 21 | $ cat /etc/redhat-release |
| 22 | CentOS Linux release 8.1.1911 (Core) |
| 23 | |
| 24 | $ cat /etc/redhat-release |
| 25 | Red Hat Enterprise Linux release 8.2 (Ootpa) |
| 26 | }}} |