508747f303
xen-4.20.0-testing-src.tar.bz2 - New Features * On Arm: - Experimental support for Armv8-R. - Support for NXP S32G3 Processors Family and NXP LINFlexD UART driver. - Basic handling for SCMI requests over SMC using Shared Memory, by allowing forwarding the calls to EL3 FW if coming from hwdom. - Support for LLC (Last Level Cache) coloring. * On x86: - xl suspend/resume subcommands. - Changed Features * Fixed blkif protocol specification for sector sizes different than 512b. * The dombuilder in libxenguest no longer un-gzips secondary modules, instead leaving this to the guest kernel to do in guest context. * On x86: - Prefer ACPI reboot over UEFI ResetSystem() run time service call. - Switched the xAPIC flat driver to use physical destination mode for external interrupts instead of logical destination mode. - Removed Features * On x86: - Support for running on Xeon Phi processors. - Removed the `ucode=allow-same` command line option. - Removed x2APIC Cluster Mode for external interrupts. x2APIC Physical and Mixed Modes are still available. - Dropped patches xsa466.patch - Move /etc/bash_completion.d/xl back to %_datadir/bash-completion/completions OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=863
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
The result of $(wildcard *) is random.
|
|
Sort input files to reduce build-compare noise.
|
|
|
|
---
|
|
docs/Makefile | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
Index: xen-4.18.0-testing/docs/Makefile
|
|
===================================================================
|
|
--- xen-4.18.0-testing.orig/docs/Makefile
|
|
+++ xen-4.18.0-testing/docs/Makefile
|
|
@@ -192,7 +192,7 @@ uninstall: uninstall-man-pages uninstall
|
|
|
|
# Individual file build targets
|
|
html/index.html: $(DOC_HTML) $(CURDIR)/gen-html-index INDEX
|
|
- $(PERL) -w -- $(CURDIR)/gen-html-index -i INDEX html $(DOC_HTML)
|
|
+ $(PERL) -w -- $(CURDIR)/gen-html-index -i INDEX html $(sort $(DOC_HTML))
|
|
|
|
html/%.txt: %.txt
|
|
@$(INSTALL_DIR) $(@D)
|
|
@@ -207,8 +207,8 @@ html/hypercall/%/index.html: $(CURDIR)/x
|
|
$(INSTALL_DIR) $(@D)
|
|
$(PERL) -w $(CURDIR)/xen-headers -O $(@D) \
|
|
-T 'arch-$* - Xen public headers' \
|
|
- $(patsubst %,-X arch-%,$(filter-out $*,$(DOC_ARCHES))) \
|
|
- $(patsubst %,-X xen-%,$(filter-out $*,$(DOC_ARCHES))) \
|
|
+ $(sort $(patsubst %,-X arch-%,$(filter-out $*,$(DOC_ARCHES)))) \
|
|
+ $(sort $(patsubst %,-X xen-%,$(filter-out $*,$(DOC_ARCHES)))) \
|
|
$(EXTRA_EXCLUDE) \
|
|
$(XEN_ROOT)/xen include/public include/xen/errno.h
|
|
|