diff options
-rw-r--r-- | recipes-extended/xen/xen-tools.inc | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-extended/xen/xen-tools.inc b/recipes-extended/xen/xen-tools.inc index 2feed007..99e7e0b8 100644 --- a/recipes-extended/xen/xen-tools.inc +++ b/recipes-extended/xen/xen-tools.inc | |||
@@ -64,9 +64,12 @@ RRECOMMENDS_${PN} = " \ | |||
64 | ${@bb.utils.contains('PACKAGECONFIG', 'externalblktap', '', '${BLKTAP_RRECOMMENDS}', d)} \ | 64 | ${@bb.utils.contains('PACKAGECONFIG', 'externalblktap', '', '${BLKTAP_RRECOMMENDS}', d)} \ |
65 | ${PN}-flask \ | 65 | ${PN}-flask \ |
66 | ${PN}-hvmloader \ | 66 | ${PN}-hvmloader \ |
67 | ${PN}-libxenhypfs \ | ||
67 | ${PN}-shim \ | 68 | ${PN}-shim \ |
68 | ${PN}-ucode \ | 69 | ${PN}-ucode \ |
70 | ${PN}-vchan \ | ||
69 | ${PN}-xenpaging \ | 71 | ${PN}-xenpaging \ |
72 | ${PN}-xenhypfs \ | ||
70 | " | 73 | " |
71 | 74 | ||
72 | RDEPENDS_${PN}-devd = " \ | 75 | RDEPENDS_${PN}-devd = " \ |
@@ -137,6 +140,10 @@ RDEPENDS_${PN}-xendomains = "\ | |||
137 | virtual/xenstored \ | 140 | virtual/xenstored \ |
138 | " | 141 | " |
139 | 142 | ||
143 | RDEPENDS_${PN}-xenhypfs = " \ | ||
144 | ${PN}-libxenhypfs \ | ||
145 | " | ||
146 | |||
140 | RDEPENDS_${PN}-xl = "libgcc" | 147 | RDEPENDS_${PN}-xl = "libgcc" |
141 | 148 | ||
142 | RDEPENDS_${PN}-xenmon = " \ | 149 | RDEPENDS_${PN}-xenmon = " \ |
@@ -179,6 +186,8 @@ PACKAGES = " \ | |||
179 | ${PN}-libxengnttab-dev \ | 186 | ${PN}-libxengnttab-dev \ |
180 | ${PN}-libxenguest \ | 187 | ${PN}-libxenguest \ |
181 | ${PN}-libxenguest-dev \ | 188 | ${PN}-libxenguest-dev \ |
189 | ${PN}-libxenhypfs \ | ||
190 | ${PN}-libxenhypfs-dev \ | ||
182 | ${PN}-libxenlight \ | 191 | ${PN}-libxenlight \ |
183 | ${PN}-libxenlight-dev \ | 192 | ${PN}-libxenlight-dev \ |
184 | ${PN}-libxenstat \ | 193 | ${PN}-libxenstat \ |
@@ -204,6 +213,7 @@ PACKAGES = " \ | |||
204 | ${PN}-shim \ | 213 | ${PN}-shim \ |
205 | ${PN}-staticdev \ | 214 | ${PN}-staticdev \ |
206 | ${PN}-ucode \ | 215 | ${PN}-ucode \ |
216 | ${PN}-vchan \ | ||
207 | ${PN}-volatiles \ | 217 | ${PN}-volatiles \ |
208 | ${PN}-xcutils \ | 218 | ${PN}-xcutils \ |
209 | ${PN}-xencommons \ | 219 | ${PN}-xencommons \ |
@@ -211,6 +221,7 @@ PACKAGES = " \ | |||
211 | ${PN}-xend \ | 221 | ${PN}-xend \ |
212 | ${PN}-xend-examples \ | 222 | ${PN}-xend-examples \ |
213 | ${PN}-xendomains \ | 223 | ${PN}-xendomains \ |
224 | ${PN}-xenhypfs \ | ||
214 | ${PN}-xenmon \ | 225 | ${PN}-xenmon \ |
215 | ${PN}-xenpaging \ | 226 | ${PN}-xenpaging \ |
216 | ${PN}-xenpmd \ | 227 | ${PN}-xenpmd \ |
@@ -324,6 +335,12 @@ FILES_${PN}-libxenguest-dev = " \ | |||
324 | ${datadir}/pkgconfig/xenguest.pc \ | 335 | ${datadir}/pkgconfig/xenguest.pc \ |
325 | " | 336 | " |
326 | 337 | ||
338 | FILES_${PN}-libxenhypfs = "${libdir}/libxenhypfs.so.*" | ||
339 | FILES_${PN}-libxenhypfs-dev = " \ | ||
340 | ${libdir}/libxenhypfs.so \ | ||
341 | ${libdir}/pkgconfig/xenhypfs.pc \ | ||
342 | " | ||
343 | |||
327 | FILES_${PN}-libxenlight = "${libdir}/libxenlight.so.*" | 344 | FILES_${PN}-libxenlight = "${libdir}/libxenlight.so.*" |
328 | FILES_${PN}-libxenlight-dev = " \ | 345 | FILES_${PN}-libxenlight-dev = " \ |
329 | ${libdir}/libxenlight.so \ | 346 | ${libdir}/libxenlight.so \ |
@@ -535,6 +552,10 @@ FILES_${PN}-ucode = "\ | |||
535 | ${sbindir}/xen-ucode \ | 552 | ${sbindir}/xen-ucode \ |
536 | " | 553 | " |
537 | 554 | ||
555 | FILES_${PN}-vchan = "\ | ||
556 | ${bindir}/vchan-socket-proxy \ | ||
557 | " | ||
558 | |||
538 | FILES_${PN}-volatiles = "\ | 559 | FILES_${PN}-volatiles = "\ |
539 | ${sysconfdir}/default/volatiles/99_xen \ | 560 | ${sysconfdir}/default/volatiles/99_xen \ |
540 | ${sysconfdir}/tmpfiles.d/xen.conf \ | 561 | ${sysconfdir}/tmpfiles.d/xen.conf \ |
@@ -557,6 +578,10 @@ FILES_${PN}-xend-examples = "\ | |||
557 | ${sysconfdir}/xen/xend-pci-quirks.sxp \ | 578 | ${sysconfdir}/xen/xend-pci-quirks.sxp \ |
558 | " | 579 | " |
559 | 580 | ||
581 | FILES_${PN}-xenhypfs = "\ | ||
582 | ${sbindir}/xenhypfs \ | ||
583 | " | ||
584 | |||
560 | FILES_${PN}-xenpaging = "\ | 585 | FILES_${PN}-xenpaging = "\ |
561 | ${libdir}/xen/bin/xenpaging \ | 586 | ${libdir}/xen/bin/xenpaging \ |
562 | ${localstatedir}/lib/xen/xenpaging \ | 587 | ${localstatedir}/lib/xen/xenpaging \ |