--- ../orig/etc/init.d/consolefont +++ ../orig/etc/init.d/consolefont @@ -9,7 +9,7 @@ } start() { - if is_uml_sys ; then + if is_uml_sys || is_xenU_sys ; then ebegin "Setting user font" eend 0 return 0 --- ../orig/etc/init.d/keymaps +++ ../orig/etc/init.d/keymaps @@ -19,7 +19,7 @@ } start() { - if is_uml_sys ; then + if is_uml_sys || is_xenU_sys ; then ebegin "Loading key mappings" eend 0 return 0 --- ../orig/sbin/functions.sh +++ ../orig/sbin/functions.sh @@ -647,7 +647,7 @@ # EXAMPLE: if is_xenU_sys ; then ... # is_xenU_sys() { - [[ -d /proc/xen && ! -f /proc/xen/privcmd ]] + [[ -d /proc/xen && ! $(type -t xencons) ]] } # bool get_mount_fstab(path)