search for: minor_release

Displaying 2 results from an estimated 2 matches for "minor_release".

2011 Aug 01
2
RedHat to CentOS packages
...at to CentOS in order to be able to report against CVE (vulnerability reports). After some research, we think that the mapping is as follows (using HTTPD as the example): CentOS httd-2.2.3-43.el5.centos.3 is equivalent to RedHat httpd-2.2.3-43.el5_5.3 So, it looks like CentOS replaces "_$MINOR_RELEASE" (in this case "_5") with ".centos" . Is this a fair assumption or are there other rules we are missing? Is this documented anywhere? Thanks Gabriel Tabares
2006 Aug 11
0
[PATCH] [4/5] SMBIOS -- generate SMBIOS tables
...+ memset(p->characteristics, 0, 8); + p->characteristics[7] = 0x08; /* BIOS characteristics not supported */ + p->characteristics_extension_bytes[0] = 0; + p->characteristics_extension_bytes[1] = 0; + + p->major_release = (uint8_t) xen_major_version; + p->minor_release = (uint8_t) xen_minor_version; + p->embedded_controller_major = 0xff; + p->embedded_controller_minor = 0xff; + + start += sizeof(struct smbios_type_0); + strcpy((char *)start, "Xen"); + start += strlen("Xen") + 1; + strcpy((char *)start, xen_version); +...