search for: bxvc0

Displaying 2 results from an estimated 2 matches for "bxvc0".

Did you mean: xvc0
2010 Apr 12
1
[PATCH] Converter: Update xvc0 console to ttyS0
...configure_console +{ + my ($g) = @_; + + # Look for gettys which use xvc0 + foreach my $augpath ($g->aug_match("/files/etc/inittab/*/process")) { + my $proc = $g->aug_get($augpath); + + # If the process mentions xvc0, change it to ttyS0 + if ($proc =~ /\bxvc0\b/) { + $proc =~ s/\bxvc0\b/ttyS0/g; + $g->aug_set($augpath, $proc); + } + } + + # Replace any mention of xvc0 in /etc/securetty with ttyS0 + my $size = 0; + my @lines = (); + + foreach my $line ($g->read_lines('/etc/securetty')) { +...
2010 Jul 28
5
RHEL 6 guest support
The following patches add RHEL 6 guest support to virt-v2v. This was actually quite a lot easier than I expected. * [PATCH 1/4] Update virt-v2v.conf for RHEL 6 virtio support * [PATCH 2/4] Check kudzu exists before attempting to disable it * [PATCH 3/4] Use dracut rather than mkinitrd if it's available * [PATCH 4/4] Properly convert RHEL 6 guest console