Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 96240 | Differences between
and this patch

Collapse All | Expand All

(-)../orig/etc/init.d/consolefont (-1 / +1 lines)
Lines 9-15 Link Here
9
}
9
}
10
10
11
start() {
11
start() {
12
	if is_uml_sys ; then
12
	if is_uml_sys || is_xenU_sys ; then
13
		ebegin "Setting user font"
13
		ebegin "Setting user font"
14
		eend 0
14
		eend 0
15
		return 0
15
		return 0
(-)../orig/etc/init.d/keymaps (-1 / +1 lines)
Lines 19-25 Link Here
19
}
19
}
20
start() {
20
start() {
21
	if is_uml_sys ; then
21
	if is_uml_sys || is_xenU_sys ; then
22
		ebegin "Loading key mappings"
22
		ebegin "Loading key mappings"
23
		eend 0
23
		eend 0
24
		return 0
24
		return 0
(-)../orig/sbin/functions.sh (-1 / +1 lines)
Lines 647-653 Link Here
647
#   EXAMPLE:  if is_xenU_sys ; then ...
647
#   EXAMPLE:  if is_xenU_sys ; then ...
648
#
648
#
649
is_xenU_sys() {
649
is_xenU_sys() {
650
	[[ -d /proc/xen && ! -f /proc/xen/privcmd ]]
650
	[[ -d /sys/bus/xen/drivers/vbd || -d /sys/bus/xen/drivers/vif ]]
651
}
651
}
652
# bool get_mount_fstab(path)
652
# bool get_mount_fstab(path)

Return to bug 96240