-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1382 from eric-ch/vglass
vglass: replace surfman/input-server with vglass
- Loading branch information
Showing
126 changed files
with
675 additions
and
24,119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,4 +42,5 @@ LAYERDEPENDS_xenclient-oe = " \ | |
meta-python \ | ||
openembedded-layer \ | ||
core \ | ||
vglass \ | ||
" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- a/configure | ||
+++ b/configure | ||
@@ -486,6 +486,7 @@ docker="no" | ||
debug_mutex="no" | ||
libpmem="" | ||
libudev="no" | ||
+libargo="no" | ||
|
||
# cross compilers defaults, can be overridden with --cross-cc-ARCH | ||
cross_cc_aarch64="aarch64-linux-gnu-gcc" | ||
@@ -5686,6 +5687,16 @@ if test "$libudev" != "no" ; then | ||
fi | ||
fi | ||
|
||
+########################################## | ||
+# argo support probe | ||
+if test "$libargo" = "yes"; then | ||
+ libargo_cflags=$($pkg_config --cflags libargo) | ||
+ libargo_libs=$($pkg_config --libs libargo) | ||
+ if ! compile_prog "$libargo_cflags" "$libargo_libs"; then | ||
+ feature_not_found "libargo" "Install libargo devel" | ||
+ fi | ||
+fi | ||
+ | ||
# Now we've finished running tests it's OK to add -Werror to the compiler flags | ||
if test "$werror" = "yes"; then | ||
QEMU_CFLAGS="-Werror $QEMU_CFLAGS" | ||
@@ -6122,6 +6133,7 @@ echo "capstone $capstone" | ||
echo "docker $docker" | ||
echo "libpmem support $libpmem" | ||
echo "libudev $libudev" | ||
+echo "libargo $libargo" | ||
|
||
if test "$sdl_too_old" = "yes"; then | ||
echo "-> Your SDL version is too old - please upgrade to have SDL support" | ||
@@ -6997,6 +7009,11 @@ if test "$libudev" != "no"; then | ||
echo "LIBUDEV_LIBS=$libudev_libs" >> $config_host_mak | ||
fi | ||
|
||
+if test "$libargo" = "yes" ; then | ||
+ echo "LIBARGO_CFLAGS=$libargo_cflags" >> $config_host_mak | ||
+ echo "LIBARGO_LIBS=$libargo_libs" >> $config_host_mak | ||
+fi | ||
+ | ||
# use included Linux headers | ||
if test "$linux" = "yes" ; then | ||
mkdir -p linux-headers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -217,6 +217,12 @@ Ross Philipson, <[email protected]>, 10/13/2016 | |
block-obj-y += null.o mirror.o commit.o io.o create.o | ||
block-obj-y += throttle-groups.o | ||
block-obj-$(CONFIG_LINUX) += nvme.o | ||
@@ -61,3 +62,5 @@ qcow.o-libs := -lz | ||
linux-aio.o-libs := -laio | ||
parallels.o-cflags := $(LIBXML2_CFLAGS) | ||
parallels.o-libs := $(LIBXML2_LIBS) | ||
+atapi-pt-protocol.o-cflags := $(LIBARGO_CFLAGS) | ||
+atapi-pt-protocol.o-libs := $(LIBARGO_LIBS) | ||
--- /dev/null | ||
+++ b/block/atapi-pt-protocol.c | ||
@@ -0,0 +1,1503 @@ | ||
|
@@ -1791,7 +1797,7 @@ Ross Philipson, <[email protected]>, 10/13/2016 | |
break; | ||
--- a/configure | ||
+++ b/configure | ||
@@ -452,6 +452,8 @@ crypto_afalg="no" | ||
@@ -451,6 +451,8 @@ crypto_afalg="no" | ||
seccomp="" | ||
glusterfs="" | ||
stubdom="no" | ||
|
@@ -1800,22 +1806,22 @@ Ross Philipson, <[email protected]>, 10/13/2016 | |
glusterfs_xlator_opt="no" | ||
glusterfs_discard="no" | ||
glusterfs_fallocate="no" | ||
@@ -1357,6 +1359,14 @@ for opt do | ||
@@ -1353,6 +1355,14 @@ for opt do | ||
;; | ||
--enable-glusterfs) glusterfs="yes" | ||
;; | ||
+ --enable-atapi-pt) atapipt="yes" | ||
+ ;; | ||
+ --disable-atapi-pt) atapipt="no" | ||
+ ;; | ||
+ --enable-atapi-pt-argo) atapiptargo="yes" && atapipt="yes" | ||
+ --enable-atapi-pt-argo) atapiptargo="yes" && atapipt="yes" && libargo="yes" | ||
+ ;; | ||
+ --disable-atapi-pt-argo) atapiptargo="no" | ||
+ ;; | ||
--disable-virtio-blk-data-plane|--enable-virtio-blk-data-plane) | ||
echo "$0: $opt is obsolete, virtio-blk data-plane is always on" >&2 | ||
;; | ||
@@ -6128,6 +6138,8 @@ echo "GlusterFS support $glusterfs" | ||
@@ -6104,6 +6114,8 @@ echo "GlusterFS support $glusterfs" | ||
echo "gcov $gcov_tool" | ||
echo "gcov enabled $gcov" | ||
echo "OpenXT stubdomain support $stubdom" | ||
|
@@ -1824,7 +1830,7 @@ Ross Philipson, <[email protected]>, 10/13/2016 | |
echo "TPM support $tpm" | ||
echo "libssh2 support $libssh2" | ||
echo "TPM passthrough $tpm_passthrough" | ||
@@ -6802,6 +6814,14 @@ if test "$stubdom" = "yes" ; then | ||
@@ -6776,6 +6788,14 @@ if test "$stubdom" = "yes" ; then | ||
echo "CONFIG_STUBDOM=y" >> $config_host_mak | ||
fi | ||
|
||
|
@@ -1841,11 +1847,14 @@ Ross Philipson, <[email protected]>, 10/13/2016 | |
# TPM passthrough support? | ||
--- a/hw/ide/Makefile.objs | ||
+++ b/hw/ide/Makefile.objs | ||
@@ -12,3 +12,4 @@ common-obj-$(CONFIG_AHCI) += ahci.o | ||
@@ -12,3 +12,7 @@ common-obj-$(CONFIG_AHCI) += ahci.o | ||
common-obj-$(CONFIG_AHCI) += ich.o | ||
common-obj-$(CONFIG_ALLWINNER_A10) += ahci-allwinner.o | ||
common-obj-$(CONFIG_IDE_SII3112) += sii3112.o | ||
+common-obj-$(CONFIG_ATAPI_PT) += atapi_pt.o | ||
+ | ||
+atapi-pt.o-cflags := $(LIBARGO_CFLAGS) | ||
+atapi-pt.o-libs := $(LIBARGO_LIBS) | ||
--- a/hw/ide/atapi.c | ||
+++ b/hw/ide/atapi.c | ||
@@ -320,7 +320,10 @@ void ide_atapi_cmd_reply_end(IDEState *s | ||
|
Oops, something went wrong.