This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "This git reposit keeps all the patches of the project.".
The branch, master has been updated via 5df6b05c8d59d89920ad64d3c7fd51b802a04fbb (commit) from 0fc7eccec98d1579ba52c1530e7a3daaa3260812 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 5df6b05c8d59d89920ad64d3c7fd51b802a04fbb Author: Michael Tremer michael.tremer@ipfire.org Date: Fri Mar 19 17:32:25 2010 +0100
Remove all files that were left ajar.
-----------------------------------------------------------------------
Summary of changes: autocommit.sh | 46 --------- icecc/icecream-0.9.4.5-dont-create-symlinks.patch | 14 --- icecc/icecream-0.9.4.5-rename-scheduler.patch | 104 --------------------- xen/xen-3.4.0-co_assignment.patch | 22 ----- xen/xen-3.4.0-cpufreq.patch | 19 ---- xen/xend-config-3.4.0.patch | 99 -------------------- 6 files changed, 0 insertions(+), 304 deletions(-) delete mode 100755 autocommit.sh delete mode 100644 icecc/icecream-0.9.4.5-dont-create-symlinks.patch delete mode 100644 icecc/icecream-0.9.4.5-rename-scheduler.patch delete mode 100644 xen/xen-3.4.0-co_assignment.patch delete mode 100644 xen/xen-3.4.0-cpufreq.patch delete mode 100644 xen/xend-config-3.4.0.patch
Difference in files: diff --git a/autocommit.sh b/autocommit.sh deleted file mode 100755 index 5136244..0000000 --- a/autocommit.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash - -patch_deleted() { - for i in $(git status . | grep deleted | awk -F: '{ print $2 }'); do - [[ "$i" =~ "^.." ]] && continue - git commit -m "Removed $(basename $i)" $i - done -} - -patch_renamed() { - for i in $(git status . | grep renamed | awk -F'->' '{ print $2 }'); do - [[ "$i" =~ "^.." ]] && continue - i2=$(git status . | grep $i | awk '{ print $3 }') - git commit -m "Moved $i2 -> $i" $i $i2 - done -} - -patch_modified() { - for i in $(git status . | grep modified | awk -F: '{ print $2 }'); do - [[ "$i" =~ "^.." ]] && continue - git commit -m "Updated $(basename $i)" $i - done -} - -patch_added() { - for i in $(git status . | grep "new file" | awk -F: '{ print $2 }'); do - [[ "$i" =~ "^.." ]] && continue - git commit -m "Imported $(basename $i)" $i - done -} - -for i in $(ls -1); do - [ -f $i ] && continue - pushd $i &>/dev/null - for j in $(ls -1 .); do - git ls-tree HEAD . | grep -q $j && continue - git add ./$j - done - patch_renamed - patch_modified - patch_deleted - patch_added - popd &>/dev/null -done - -[ "$1" == "--push" ] && git push diff --git a/icecc/icecream-0.9.4.5-dont-create-symlinks.patch b/icecc/icecream-0.9.4.5-dont-create-symlinks.patch deleted file mode 100644 index 5f9daa5..0000000 --- a/icecc/icecream-0.9.4.5-dont-create-symlinks.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -urN icecream.orig/client/Makefile.am icecream/client/Makefile.am ---- icecream.orig/client/Makefile.am -+++ icecream/client/Makefile.am -@@ -17,10 +17,6 @@ - - install-exec-local: - $(mkinstalldirs) $(DESTDIR)$(bindir) -- for link in g++ gcc c++ cc; do \ -- rm -f $(DESTDIR)$(bindir)/$$link ;\ -- $(LN_S) icecc $(DESTDIR)$(bindir)/$$link ;\ -- done - - uninstall-local: - for link in g++ gcc c++ cc; do \ diff --git a/icecc/icecream-0.9.4.5-rename-scheduler.patch b/icecc/icecream-0.9.4.5-rename-scheduler.patch deleted file mode 100644 index ddbc455..0000000 --- a/icecc/icecream-0.9.4.5-rename-scheduler.patch +++ /dev/null @@ -1,104 +0,0 @@ -diff -Nurp icecc-0.9.2.orig/doc/man-scheduler.1.docbook icecc-0.9.2/doc/man-scheduler.1.docbook ---- icecc-0.9.2.orig/doc/man-scheduler.1.docbook 2009-02-07 19:07:02.000000000 +0100 -+++ icecc-0.9.2/doc/man-scheduler.1.docbook 2009-02-07 19:07:30.000000000 +0100 -@@ -23,13 +23,13 @@ - </refmeta> - - <refnamediv> -- <refname>scheduler</refname> -+ <refname>icecc-scheduler</refname> - <refpurpose>Icecream scheduler</refpurpose> - </refnamediv> - - <refsynopsisdiv> - <cmdsynopsis> --<command>scheduler</command> -+<command>icecc-scheduler</command> - <group> - <arg choice="opt"> - <option>-n</option> -@@ -151,7 +151,7 @@ need to run the scheduler with root righ - - <refsect1> - <title>See Also</title> --<para>icecream, scheduler, iceccd, icemon</para> -+<para>icecream, icecc-scheduler, iceccd, icemon</para> - </refsect1> - - <refsect1> -diff -Nurp icecc-0.9.2.orig/services/Makefile.am icecc-0.9.2/services/Makefile.am ---- icecc-0.9.2.orig/services/Makefile.am 2009-02-07 19:07:02.000000000 +0100 -+++ icecc-0.9.2/services/Makefile.am 2009-02-07 19:07:30.000000000 +0100 -@@ -11,9 +11,9 @@ ice_HEADERS = job.h comm.h - noinst_HEADERS = bench.h exitcode.h getifaddrs.h logging.h tempfile.h platform.h - icedir = $(includedir)/icecc - --sbin_PROGRAMS = scheduler --scheduler_SOURCES = scheduler.cpp --scheduler_LDADD = libicecc.la -+sbin_PROGRAMS = icecc-scheduler -+icecc_scheduler_SOURCES = scheduler.cpp -+icecc_scheduler_LDADD = libicecc.la - - pkgconfigdir = $(libdir)/pkgconfig - pkgconfig_DATA = icecc.pc -diff -Nurp icecc-0.9.2.orig/services/Makefile.in icecc-0.9.2/services/Makefile.in ---- icecc-0.9.2.orig/services/Makefile.in 2008-11-02 14:14:47.000000000 +0100 -+++ icecc-0.9.2/services/Makefile.in 2009-02-07 19:07:36.000000000 +0100 -@@ -35,7 +35,7 @@ PRE_UNINSTALL = : - POST_UNINSTALL = : - build_triplet = @build@ - host_triplet = @host@ --sbin_PROGRAMS = scheduler$(EXEEXT) -+sbin_PROGRAMS = icecc-scheduler$(EXEEXT) - subdir = services - DIST_COMMON = $(ice_HEADERS) $(noinst_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in $(srcdir)/icecc.pc.in -@@ -66,9 +66,9 @@ libicecc_la_LINK = $(LIBTOOL) --tag=CXX - $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ - sbinPROGRAMS_INSTALL = $(INSTALL_PROGRAM) - PROGRAMS = $(sbin_PROGRAMS) --am_scheduler_OBJECTS = scheduler.$(OBJEXT) --scheduler_OBJECTS = $(am_scheduler_OBJECTS) --scheduler_DEPENDENCIES = libicecc.la -+am_icecc_scheduler_OBJECTS = scheduler.$(OBJEXT) -+icecc_scheduler_OBJECTS = $(am_icecc_scheduler_OBJECTS) -+icecc_scheduler_DEPENDENCIES = libicecc.la - DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) - depcomp = $(SHELL) $(top_srcdir)/depcomp - am__depfiles_maybe = depfiles -@@ -90,8 +90,8 @@ CXXLD = $(CXX) - CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ - --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ - $(LDFLAGS) -o $@ --SOURCES = $(libicecc_la_SOURCES) $(scheduler_SOURCES) --DIST_SOURCES = $(libicecc_la_SOURCES) $(scheduler_SOURCES) -+SOURCES = $(libicecc_la_SOURCES) $(icecc_scheduler_SOURCES) -+DIST_SOURCES = $(libicecc_la_SOURCES) $(icecc_scheduler_SOURCES) - pkgconfigDATA_INSTALL = $(INSTALL_DATA) - DATA = $(pkgconfig_DATA) - iceHEADERS_INSTALL = $(INSTALL_HEADER) -@@ -226,8 +226,8 @@ libicecc_la_CXXFLAGS = -fPIC -DPIC - ice_HEADERS = job.h comm.h - noinst_HEADERS = bench.h exitcode.h getifaddrs.h logging.h tempfile.h platform.h - icedir = $(includedir)/icecc --scheduler_SOURCES = scheduler.cpp --scheduler_LDADD = libicecc.la -+icecc_scheduler_SOURCES = scheduler.cpp -+icecc_scheduler_LDADD = libicecc.la - pkgconfigdir = $(libdir)/pkgconfig - pkgconfig_DATA = icecc.pc - all: all-am -@@ -322,9 +322,9 @@ clean-sbinPROGRAMS: - echo " rm -f $$p $$f"; \ - rm -f $$p $$f ; \ - done --scheduler$(EXEEXT): $(scheduler_OBJECTS) $(scheduler_DEPENDENCIES) -- @rm -f scheduler$(EXEEXT) -- $(CXXLINK) $(scheduler_OBJECTS) $(scheduler_LDADD) $(LIBS) -+icecc-scheduler$(EXEEXT): $(icecc_scheduler_OBJECTS) $(icecc_scheduler_DEPENDENCIES) -+ @rm -f icecc-scheduler$(EXEEXT) -+ $(CXXLINK) $(icecc_scheduler_OBJECTS) $(icecc_scheduler_LDADD) $(LIBS) - - mostlyclean-compile: - -rm -f *.$(OBJEXT) diff --git a/xen/xen-3.4.0-co_assignment.patch b/xen/xen-3.4.0-co_assignment.patch deleted file mode 100644 index f0b59f0..0000000 --- a/xen/xen-3.4.0-co_assignment.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -r 6ab55f716ce3 tools/python/xen/util/pci.py ---- a/tools/python/xen/util/pci.py Thu Oct 09 17:18:11 2008 +0100 -+++ b/tools/python/xen/util/pci.py Fri Oct 10 13:16:00 2008 +0800 -@@ -696,6 +696,7 @@ class PciDevice: - def do_FLR(self): - """ Perform FLR (Functional Level Reset) for the device. - """ -+ return - if self.dev_type == DEV_TYPE_PCIe_ENDPOINT: - # If PCIe device supports FLR, we use it. - if self.pcie_flr: -diff -r 6ab55f716ce3 tools/python/xen/xend/server/pciif.py ---- a/tools/python/xen/xend/server/pciif.py Thu Oct 09 17:18:11 2008 +0100 -+++ b/tools/python/xen/xend/server/pciif.py Fri Oct 10 13:18:25 2008 +0800 -@@ -375,6 +375,7 @@ class PciController(DevController): - pci_dev_list = pci_dev_list + [(domain, bus, slot, func)] - - for (domain, bus, slot, func) in pci_dev_list: -+ continue - try: - dev = PciDevice(domain, bus, slot, func) - except Exception, e: diff --git a/xen/xen-3.4.0-cpufreq.patch b/xen/xen-3.4.0-cpufreq.patch deleted file mode 100644 index 4a8f3f3..0000000 --- a/xen/xen-3.4.0-cpufreq.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- a/xen/arch/x86/platform_hypercall.c 2009-07-23 07:26:18.000000000 +0000 -+++ b/xen/arch/x86/platform_hypercall.c 2009-07-23 07:28:30.000000000 +0000 -@@ -313,7 +313,6 @@ - { - uint32_t cpu; - uint64_t idletime, now = NOW(); -- struct vcpu *v; - struct xenctl_cpumap ctlmap; - cpumask_t cpumap; - XEN_GUEST_HANDLE(uint8) cpumap_bitmap; -@@ -336,7 +335,7 @@ - - for_each_cpu_mask ( cpu, cpumap ) - { -- if ( (v = idle_vcpu[cpu]) != NULL ) -+ if ( !idle_vcpu[cpu] ) - cpu_clear(cpu, cpumap); - idletime = get_cpu_idle_time(cpu); - diff --git a/xen/xend-config-3.4.0.patch b/xen/xend-config-3.4.0.patch deleted file mode 100644 index fce98f9..0000000 --- a/xen/xend-config-3.4.0.patch +++ /dev/null @@ -1,99 +0,0 @@ ---- a/tools/examples/xend-config.sxp 2009-05-18 11:05:38.000000000 +0000 -+++ b/tools/examples/xend-config.sxp 2009-07-23 08:00:23.000000000 +0000 -@@ -14,10 +14,6 @@ - #(logfile /var/log/xen/xend.log) - #(loglevel DEBUG) - --# Uncomment the line below. Set the value to flask, acm, or dummy to --# select a security module. -- --#(xsm_module_name dummy) - - # The Xen-API server configuration. - # -@@ -58,21 +54,20 @@ - - - #(xend-http-server no) --#(xend-unix-server no) --#(xend-tcp-xmlrpc-server no) --#(xend-unix-xmlrpc-server yes) -+(xend-unix-server yes) -+(xend-tcp-xmlrpc-server yes) -+(xend-unix-xmlrpc-server yes) - #(xend-relocation-server no) - (xend-relocation-server yes) - #(xend-relocation-ssl-server no) --#(xend-udev-event-server no) - - #(xend-unix-path /var/lib/xend/xend-socket) - - - # Address and port xend should use for the legacy TCP XMLRPC interface, - # if xend-tcp-xmlrpc-server is set. --#(xend-tcp-xmlrpc-server-address 'localhost') --#(xend-tcp-xmlrpc-server-port 8006) -+(xend-tcp-xmlrpc-server-address 'localhost') -+(xend-tcp-xmlrpc-server-port 8006) - - # SSL key and certificate to use for the legacy TCP XMLRPC interface. - # Setting these will mean that this port serves only SSL connections as -@@ -82,11 +77,11 @@ - - - # Port xend should use for the HTTP interface, if xend-http-server is set. --#(xend-port 8000) -+(xend-port 8000) - - # Port xend should use for the relocation interface, if xend-relocation-server - # is set. --#(xend-relocation-port 8002) -+(xend-relocation-port 8002) - - # Port xend should use for the ssl relocation interface, if - # xend-relocation-ssl-server is set. -@@ -154,7 +149,7 @@ - # two fake interfaces per guest domain. To do things like this, write - # yourself a wrapper script, and call network-bridge from it, as appropriate. - # --(network-script network-bridge) -+(network-script network-dummy) - - # The script used to control virtual interfaces. This can be overridden on a - # per-vif basis when creating a domain or a configuring a new vif. The -@@ -169,7 +164,7 @@ - # If you are using only one bridge, the vif-bridge script will discover that, - # so there is no need to specify it explicitly. - # --(vif-script vif-bridge) -+#(vif-script vif-bridge) - - - ## Use the following if network traffic is routed, as an alternative to the -@@ -194,7 +189,7 @@ - - # In SMP system, dom0 will use dom0-cpus # of CPUS - # If dom0-cpus = 0, dom0 will take all cpus available --(dom0-cpus 0) -+#(dom0-cpus 0) - - # Whether to enable core-dumps when domains crash. - #(enable-dump no) -@@ -205,7 +200,7 @@ - # The interface for VNC servers to listen on. Defaults - # to 127.0.0.1 To restore old 'listen everywhere' behaviour - # set this to 0.0.0.0 --#(vnc-listen '127.0.0.1') -+(vnc-listen '0.0.0.0') - - # The default password for VNC console on HVM domain. - # Empty string is no authentication. -@@ -243,7 +238,7 @@ - - # The default keymap to use for the VM's virtual keyboard - # when not specififed in VM's configuration --#(keymap 'en-us') -+(keymap 'de') - - # Script to run when the label of a resource has changed. - #(resource-label-change-script '')
hooks/post-receive -- This git reposit keeps all the patches of the project.