Several small fixes in various files
- xrandr_facts.py: allow detecting Virtual[1..n] devices in VirtualBox 6.0
This commit is contained in:
parent
89c7254d43
commit
2559779de3
@ -1687,7 +1687,7 @@ ati_remote rc-medion-x10-digitainer /lib/udev/rc_keymaps/rc-medion-x10-digi
|
||||
# * * dibusb # found in dibusb-common.c
|
||||
# * * digitv # found in digitv.c
|
||||
# * * megasky # found in m920x.c
|
||||
# * * tvwalkerir-kbd-i2c rc-hauppauge /lib/udev/rc_keymaps/rc-hauppaugetwin # found in m920x.c
|
||||
# * * tvwalkerir-kbd-i2c # found in m920x.c
|
||||
# * * pinnacle310e # found in m920x.c
|
||||
# * * haupp # found in nova-t-usb2.c
|
||||
# * * opera1 # found in opera1.c
|
||||
@ -2459,8 +2459,8 @@ preferred_refreshrates:
|
||||
|
||||
- name: update xorg and xrandr variable with values from local facts if needed
|
||||
set_fact:
|
||||
xorg: '{{ ansible_local.xorg }}'
|
||||
xrandr: '{{ ansible_local.xrandr }}'
|
||||
xorg: '{{ ansible_local.xorg.xorg }}'
|
||||
xrandr: '{{ ansible_local.xrandr.xrandr }}'
|
||||
when:
|
||||
- xrandr is undefined
|
||||
- xorg is undefined
|
||||
@ -5242,7 +5242,7 @@ The tool ubuntu-drivers is used to install the matching driver version for nvidi
|
||||
:PROPERTIES:
|
||||
:ID: f03f3758-9188-4e98-a26a-bbddf14d8194
|
||||
:END:
|
||||
This role installs the guest additions for virtualbox guests on Ubuntu 16.04
|
||||
This role installs the guest additions for virtualbox guests on Ubuntu 18.04
|
||||
|
||||
#+BEGIN_SRC yaml :tangle roles/autoinstall-virtualbox-guest/tasks/main.yml :padline no
|
||||
---
|
||||
|
@ -12,7 +12,7 @@ Please note that this is still work in progress and several features of yaVDR 0.
|
||||
- 32 Bit Installations are untested, but should work
|
||||
- You need an IGP/GPU with support for VDPAU or VAAPI if you want to use software output plugins for VDR like softhddevice or vaapidevice
|
||||
- xineliboutput/vdr-sxfe works with software rendering, too
|
||||
- Can be used in a VirtualBox VM
|
||||
- Can be used in a VirtualBox VM (VirtualBox 5.22 works better than Version 6.0.0)
|
||||
|
||||
## Usage:
|
||||
|
||||
|
@ -25,7 +25,7 @@ options:
|
||||
- the DISPLAY variable to use when calling xrandr
|
||||
preferred_outputs:
|
||||
required: False
|
||||
default: ["HDMI", "DP", "DVI", "VGA", "TV"]
|
||||
default: ["HDMI", "DP", "DVI", "VGA", "TV", "Virtual"]
|
||||
description:
|
||||
- ranking of the preferred display connectors
|
||||
preferred_refreshrates:
|
||||
@ -59,7 +59,7 @@ EXAMPLES = '''
|
||||
ARG_SPECS = {
|
||||
'display': dict(default=":0", type='str', required=False),
|
||||
'preferred_outputs': dict(
|
||||
default=["HDMI", "DP", "DVI", "VGA", "TV"], type='list', required=False),
|
||||
default=["HDMI", "DP", "DVI", "VGA", "TV", "Virtual"], type='list', required=False),
|
||||
'preferred_refreshrates': dict(
|
||||
default=[50, 60, 75, 30, 25], type='list', required=False),
|
||||
'preferred_resolutions': dict(
|
||||
@ -71,7 +71,7 @@ ARG_SPECS = {
|
||||
|
||||
SCREEN_REGEX = re.compile("^(?P<screen>Screen\s\d+:)(?:.*)")
|
||||
CONNECTOR_REGEX = re.compile(
|
||||
"^(?P<connector>.*-\d+)\s(?P<connection_state>connected|disconnected)\s(?P<primary>primary)?")
|
||||
"^(?P<connector>.*-?\d+)\s(?P<connection_state>connected|disconnected)\s(?P<primary>primary)?")
|
||||
MODE_REGEX = re.compile("^\s+(?P<resolution>\d{3,}x\d{3,}).*")
|
||||
|
||||
Mode = namedtuple('Mode', ['connection', 'resolution', 'refreshrate'])
|
||||
|
@ -173,7 +173,7 @@ ati_remote rc-medion-x10-digitainer /lib/udev/rc_keymaps/rc-medion-x10-digi
|
||||
# * * dibusb # found in dibusb-common.c
|
||||
# * * digitv # found in digitv.c
|
||||
# * * megasky # found in m920x.c
|
||||
# * * tvwalkerir-kbd-i2c rc-hauppauge /lib/udev/rc_keymaps/rc-hauppaugetwin # found in m920x.c
|
||||
# * * tvwalkerir-kbd-i2c # found in m920x.c
|
||||
# * * pinnacle310e # found in m920x.c
|
||||
# * * haupp # found in nova-t-usb2.c
|
||||
# * * opera1 # found in opera1.c
|
||||
|
@ -131,8 +131,8 @@
|
||||
|
||||
- name: update xorg and xrandr variable with values from local facts if needed
|
||||
set_fact:
|
||||
xorg: '{{ ansible_local.xorg }}'
|
||||
xrandr: '{{ ansible_local.xrandr }}'
|
||||
xorg: '{{ ansible_local.xorg.xorg }}'
|
||||
xrandr: '{{ ansible_local.xrandr.xrandr }}'
|
||||
when:
|
||||
- xrandr is undefined
|
||||
- xorg is undefined
|
||||
|
@ -1,3 +1,5 @@
|
||||
{{ ansible_managed | comment }}
|
||||
|
||||
Section "Device"
|
||||
Identifier "nvidia"
|
||||
Driver "nvidia"
|
||||
|
Loading…
Reference in New Issue
Block a user