summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/rpm/rpm/rpm-platform.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/rpm/rpm/rpm-platform.patch')
-rw-r--r--meta/recipes-devtools/rpm/rpm/rpm-platform.patch132
1 files changed, 132 insertions, 0 deletions
diff --git a/meta/recipes-devtools/rpm/rpm/rpm-platform.patch b/meta/recipes-devtools/rpm/rpm/rpm-platform.patch
new file mode 100644
index 0000000000..09a1c13048
--- /dev/null
+++ b/meta/recipes-devtools/rpm/rpm/rpm-platform.patch
@@ -0,0 +1,132 @@
1Fix up platform and related sysinfo file loading.
2
3This ensures that RPM knows the compatible set of package types at all times.
4
5Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
6
7diff -ur rpm-5.4.0.orig/lib/depends.c rpm-5.4.0/lib/depends.c
8--- rpm-5.4.0.orig/lib/depends.c 2011-02-15 20:40:13.002849708 -0600
9+++ rpm-5.4.0/lib/depends.c 2011-02-15 20:47:05.838981632 -0600
10@@ -248,7 +248,7 @@
11 he->p.ptr = _free(he->p.ptr);
12 }
13
14-#if defined(RPM_VENDOR_WINDRIVER)
15+#if defined(RPM_VENDOR_WINDRIVER) && !defined(RPM_VENDOR_POKY)
16 /*
17 * If we're capable of installing multiple colors
18 * but at least one of the packages are white (0), we
19@@ -505,7 +505,7 @@
20 return 0;
21 }
22
23-#if defined(RPM_VENDOR_WINDRIVER)
24+#if defined(RPM_VENDOR_WINDRIVER) && !defined(RPM_VENDOR_POKY)
25 /* Is "compat" compatible w/ arch? */
26 int _isCompatibleArch(const char * arch, const char * compat)
27 {
28@@ -649,7 +649,7 @@
29
30 if (arch == NULL || (parch = rpmteA(p)) == NULL)
31 continue;
32-#if defined(RPM_VENDOR_WINDRIVER)
33+#if defined(RPM_VENDOR_WINDRIVER) && !defined(RPM_VENDOR_POKY)
34 /* XXX hackery for alias matching. */
35 if (!_isCompatibleArch(arch, parch))
36 continue;
37@@ -815,6 +815,12 @@
38 return rc;
39 }
40
41+#if defined(RPM_VENDOR_WINDRIVER)
42+#define _ETC_RPM_SYSINFO "%{_etcrpm}/sysinfo"
43+#else
44+#define _ETC_RPM_SYSINFO SYSCONFIGDIR "/sysinfo"
45+#endif
46+
47 /*@only@*/ /*@null@*/ /*@unchecked@*/
48 static char *sysinfo_path = NULL;
49
50@@ -1296,7 +1302,7 @@
51 sysinfo_path = rpmExpand("%{?_rpmds_sysinfo_path}", NULL);
52 if (!(sysinfo_path != NULL && *sysinfo_path == '/')) {
53 sysinfo_path = _free(sysinfo_path);
54- sysinfo_path = xstrdup(SYSCONFIGDIR "/sysinfo");
55+ sysinfo_path = rpmExpand(_ETC_RPM_SYSINFO, NULL);
56 }
57 }
58
59diff -ur rpm-5.4.0.orig/lib/rpmds.c rpm-5.4.0/lib/rpmds.c
60--- rpm-5.4.0.orig/lib/rpmds.c 2011-02-15 20:40:13.004855352 -0600
61+++ rpm-5.4.0/lib/rpmds.c 2011-02-15 20:41:55.598846670 -0600
62@@ -1737,7 +1737,7 @@
63 /*@-observertrans @*/
64 _sysinfo_path = _free(_sysinfo_path);
65 /*@=observertrans @*/
66- _sysinfo_path = xstrdup(_ETC_RPM_SYSINFO);
67+ _sysinfo_path = rpmExpand(_ETC_RPM_SYSINFO, NULL);
68 }
69 }
70 /*@=modobserver@*/
71diff -ur rpm-5.4.0.orig/lib/rpmrc.c rpm-5.4.0/lib/rpmrc.c
72--- rpm-5.4.0.orig/lib/rpmrc.c 2011-02-15 20:40:13.006853913 -0600
73+++ rpm-5.4.0/lib/rpmrc.c 2011-02-15 20:44:39.708972391 -0600
74@@ -38,7 +38,13 @@
75 static const char * configTarget = NULL;
76
77 /*@observer@*/ /*@unchecked@*/
78-static const char * platform = SYSCONFIGDIR "/platform";
79+#if defined(RPM_VENDOR_WINDRIVER)
80+#define _ETC_RPM_PLATFORM "%{_etcrpm}/platform"
81+#else
82+#define _ETC_RPM_PLATFORM SYSCONFIGDIR "/platform"
83+#endif
84+
85+static const char * _platform = NULL;
86
87 /*@only@*/ /*@relnull@*/ /*@unchecked@*/
88 void * platpat = NULL;
89@@ -685,16 +691,17 @@
90 int rc;
91
92 while (!gotDefaults) {
93-#if defined(RPM_VENDOR_WINDRIVER)
94- const char * _platform = rpmGetPath(__etcrpm, "/platform", NULL);
95-#else
96- const char * _platform = platform;
97-#endif
98+ if (_platform == NULL) {
99+ _platform = rpmExpand("%{?_rpmrc_platform_path}", NULL);
100+ /* XXX may need to validate path existence somewhen. */
101+ if (!(_platform != NULL && *_platform == '/')) {
102+ _platform = _free(_platform);
103+ _platform = rpmExpand(_ETC_RPM_PLATFORM, NULL);
104+ }
105+ }
106 CVOG_t cvog = NULL;
107 #if defined(RPM_VENDOR_OPENPKG) /* larger-utsname */
108 const char *cp;
109-#endif
110-#if defined(RPM_VENDOR_OPENPKG) /* larger-utsname */
111 /* utsname fields on some platforms (like HP-UX) are very small
112 (just about 8 characters). This is too small for OpenPKG, so cheat! */
113 rc = uname(&un_real);
114@@ -771,9 +778,7 @@
115 if (cp != NULL && cp != _platform)
116 cp = _free(cp);
117 #endif
118-#if defined(RPM_VENDOR_WINDRIVER)
119 _platform = _free(_platform);
120-#endif
121
122 if (configTarget && !parseCVOG(configTarget, &cvog) && cvog != NULL) {
123 gotDefaults = 1;
124@@ -1096,6 +1101,8 @@
125
126 #ifdef PREMACROFILES
127 if (rpmReadRC(PREMACROFILES)) return -1;
128+#else
129+ if (rpmReadRC(NULL)) return -1;
130 #endif
131
132 /* Reset umask to its default umask(2) value. */