similar to: [PATCH] sysprep: remove crash data generated by kexec-tools

Displaying 20 results from an estimated 200 matches similar to: "[PATCH] sysprep: remove crash data generated by kexec-tools"

2016 Feb 03
0
Re: [PATCH 1/3] sysprep, get-kernel: explicit the Guestfs parameter
On Wed, Feb 03, 2016 at 07:28:16PM +0100, Pino Toscano wrote: > Help the OCaml compiler by expliciting Guestfs.guestfs as type for 'g' > in some functions. Looks mechanical, ACK. Does Hindley-Milner type inference have problems here? I've not seen them in this case. Rich. > get-kernel/get_kernel.ml | 2 +- >
2012 Aug 08
1
[PATCH] sysprep: remove the process accounting log files
We just remove the process accounting files previously without touch a empty file, this will cause psacct runs error. Restart the service can't help us create this file auto. couldn't open file '/var/account/pacct': No such file or directory Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com> --- po/POTFILES-ml | 1 + sysprep/Makefile.am
2016 Feb 03
6
[PATCH 1/3] sysprep, get-kernel: explicit the Guestfs parameter
Help the OCaml compiler by expliciting Guestfs.guestfs as type for 'g' in some functions. --- get-kernel/get_kernel.ml | 2 +- sysprep/sysprep_operation_abrt_data.ml | 2 +- sysprep/sysprep_operation_bash_history.ml | 2 +- sysprep/sysprep_operation_ca_certificates.ml | 2 +- sysprep/sysprep_operation_crash_data.ml
2016 Dec 14
0
[PATCH v2 3/4] sysprep: Add a new operation to remove editor backup files (RHBZ#1401320).
Remove editor backup files such as *~ and *.bak wherever they occur within the guest filesystem. This also includes a test. --- sysprep/Makefile.am | 2 + sysprep/sysprep_operation_backup_files.ml | 98 +++++++++++++++++++++++++++++++ sysprep/test-virt-sysprep-backup-files.sh | 64 ++++++++++++++++++++ 3 files changed, 164 insertions(+) create mode 100644
2017 Sep 19
1
Re: [PATCH 2/5] Make sure every *.ml file has a corresponding *.mli file.
On Monday, 18 September 2017 18:39:40 CEST Richard W.M. Jones wrote: > dib/output_format_docker.mli | 19 + > dib/output_format_qcow2.mli | 19 + > dib/output_format_raw.mli | 19 + > dib/output_format_squashfs.mli | 19 + > dib/output_format_tar.mli | 19 + >
2014 Jan 21
1
[PATCH 1/2] sysprep: Update comments.
--- sysprep/sysprep_operation.mli | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sysprep/sysprep_operation.mli b/sysprep/sysprep_operation.mli index 61dde72..eb89db4 100644 --- a/sysprep/sysprep_operation.mli +++ b/sysprep/sysprep_operation.mli @@ -16,14 +16,16 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *) -(** Structure used to describe sysprep
2015 May 15
0
[PATCH 3/4] ocaml tools: Use global variables to store trace (-x) and verbose (-v) flags.
Don't pass these flags to dozens of functions. --- builder/builder.ml | 47 +++++++++-------- builder/cache.ml | 4 +- builder/cache.mli | 2 +- builder/cmdline.ml | 13 ++--- builder/downloader.ml | 14 +++-- builder/downloader.mli
2012 Dec 28
1
[PATCH v3 01/11] kexec: introduce kexec firmware support
> Daniel Kiper <daniel.kiper at oracle.com> writes: > > > Some kexec/kdump implementations (e.g. Xen PVOPS) could not use default > > Linux infrastructure and require some support from firmware and/or hypervisor. > > To cope with that problem kexec firmware infrastructure was introduced. > > It allows a developer to use all kexec/kdump features of given firmware
2012 Dec 28
1
[PATCH v3 01/11] kexec: introduce kexec firmware support
> Daniel Kiper <daniel.kiper at oracle.com> writes: > > > Some kexec/kdump implementations (e.g. Xen PVOPS) could not use default > > Linux infrastructure and require some support from firmware and/or hypervisor. > > To cope with that problem kexec firmware infrastructure was introduced. > > It allows a developer to use all kexec/kdump features of given firmware
2006 Dec 20
0
Kexec / Kdump - xen-3.0.4-testing-13098
Kexec / Kdump - xen-3.0.4-testing-13098 Kexec Kexec Kexec Kexec Kdump Hardware Xen -> Xen -> bzImage -> Xen -> Xen -> Arch Platform Xen bzImage Xen vmlinux vmlinux i386 A PASS PASS PASS PASS PASS i386 B (VMX) PASS PASS PASS PASS
2010 Sep 03
0
kexec for domU
I''ve searched in a couple of places, but have yet to find a conclusive answer for this question: is kexec supported for domU kernels, yet? I saw a couple of developer threads about possible implementation, but I tried it in SLES 11 (2.6.32.13-0.5-xen) and I get an error: Invalid memory segment 0x2000 - 0x595fff I was wondering if there''s something that needs to be done for
2010 Apr 26
0
fast boot from xen to linux and vice-versa by kexec
Hi: recently i am doing fast boot from linux kernel to Xen hypervisor,and vice-versa. it means when linux is running on the real machine, i just want to switch to Xen hypervisor without going through bootloader. both linux and dom0 of Xen using the same filesystem. we boot Xen and the Linux with the following command in grub: title Ubuntu 8.04.2, kernel 2.6.29 root (hd0,7)
2009 Sep 30
0
[PATCH] Disable HPET broadcast mode on kexec
# HG changeset patch # User Ian Campbell <ian.campbell@citrix.com> # Date 1254298855 0 # Node ID 5215da46d60f95d57244e709cb3b189caffec50c # Parent 6472342c8ab0789b844714bcf557e9e5eeacca42 Disable HPET broadcast mode on kexec. Without this the new kernel cannot receive timer interrupts from the legacy sources. Hangs are observed in the second kernel''s "check_timer()"
2012 May 22
1
[PATCH v2] kexec: simply pass LINUX_REBOOT_CMD_KEXEC to reboot
While trying to port kexec cleanly to klibc, came across this syscall usage for reboot(2). Calling reboot directly simplifies the code. Signed-off-by: maximilian attems <max at stro.at> --- kexec/kexec-syscall.h | 18 ------------------ kexec/kexec.c | 3 ++- 2 files changed, 2 insertions(+), 19 deletions(-) v2: keep LINUX_REBOOT_CMD_KEXEC defines, thus no need of
2013 Apr 22
1
Recent kexec-tools and klibc on x86/x86-64
Hello, trying to update to the latest kexec version I'm blocked by the lack of basename() and vfscanf() in klibc. I've noticed it only recently because I'm building almost exclusively for arm. This commit intruduced the issue: http://git.kernel.org/cgit/utils/kernel/kexec/kexec-tools.git/commit/kexec/arch/i386/x86-linux-setup.c?id=3bf0213789d56054f601c5a06372f78567aacdd9 Has
2012 Dec 27
1
[PATCH v3 06/11] x86/xen: Add i386 kexec/kdump implementation
> On 12/26/2012 06:18 PM, Daniel Kiper wrote: > > Add i386 kexec/kdump implementation. > > > > v2 - suggestions/fixes: > > - allocate transition page table pages below 4 GiB > > (suggested by Jan Beulich). > > Why? Sadly all addresses are passed via unsigned long variable to kexec hypercall. Daniel
2012 Dec 27
1
[PATCH v3 06/11] x86/xen: Add i386 kexec/kdump implementation
> On 12/26/2012 06:18 PM, Daniel Kiper wrote: > > Add i386 kexec/kdump implementation. > > > > v2 - suggestions/fixes: > > - allocate transition page table pages below 4 GiB > > (suggested by Jan Beulich). > > Why? Sadly all addresses are passed via unsigned long variable to kexec hypercall. Daniel
2009 May 08
0
CEBA-2009:0467 CentOS 5 i386 kexec-tool Update
CentOS Errata and Bugfix Advisory 2009:0467 Upstream details at : https://rhn.redhat.com/errata/RHBA-2009-0467.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) i386: cad1981b1b5a103dee1f0179c9780189 kexec-tools-1.102pre-56.el5_3.2.i386.rpm Source: 4b1d211c7da54f4f7b6443efc596aae8 kexec-tools-1.102pre-56.el5_3.2.src.rpm --
2009 May 08
0
CEBA-2009:0467 CentOS 5 x86_64 kexec-tool Update
CentOS Errata and Bugfix Advisory 2009:0467 Upstream details at : https://rhn.redhat.com/errata/RHBA-2009-0467.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) x86_64: fa6a45cf93b3a6e7ebd142dbf3544699 kexec-tools-1.102pre-56.el5_3.2.x86_64.rpm Source: 4b1d211c7da54f4f7b6443efc596aae8 kexec-tools-1.102pre-56.el5_3.2.src.rpm
2010 May 28
0
CEBA-2010:0375 CentOS 5 i386 kexec-tools Update
CentOS Errata and Bugfix Advisory 2010:0375 Upstream details at : https://rhn.redhat.com/errata/RHBA-2010-0375.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) i386: 9960576aaf5403a94edddfbbf6d82cdb kexec-tools-1.102pre-96.el5_5.1.i386.rpm Source: 1f38330b856945886287a0d29d1531d4 kexec-tools-1.102pre-96.el5_5.1.src.rpm --