<div dir="ltr"><div>I have worked out how I can boot to the v7 kernel.</div><div><br></div><div>I currently use a couple of conf files within /etc/X11/xorg.conf.d/ that allow me to boot to either "just the amd" laptop screen or both the laptop "amd" screen and the "nvidia" external desktop monitors (via HDMI & via a USB dock with HDMI/Displayport). My current boot is for the amd only version... so guessing nothing is being loaded as far as the nvidia is concerned; hence it works where as previously some of the versions/boot failed with diver errors (possibly due to the hdmi actually being plugged in at boot and/or making the nvidia conf file active depending on if I'm at my desk or on the couch!)</div><div><br></div><div>These are the conf (currently held) files. The current boot is completely X11 default handling.</div><div><br></div><div>cat /etc/X11/xorg.conf.d/10-prime_nvidiagpu.conf.hold <br>Section "ServerLayout"<br>    Identifier  "layout"<br>    Screen 0    "nvidia"<br>    Inactive    "amdgpu"<br>EndSection<br><br>Section "Device"<br>    Identifier  "nvidia"<br>    Driver      "nvidia"<br>    BusID       "PCI:1:0:0" # Sample: "PCI:1:0:0"<br>EndSection<br><br>Section "Screen"<br>    Identifier  "nvidia"<br>    Device      "nvidia"<br>    Option      "AllowEmptyInitialConfiguration"      <br>    #  Option         "ForceFullCompositionPipeline" "on"<br>    #  Option         "AllowIndirectGLXProtocol" "off"<br>    #  Option         "TripleBuffer" "on"<br>EndSection<br><br>Section "Device"<br>    Identifier  "amdgpu"<br>    # Driver      "amdgpu"<br>    Driver      "modesetting"<br>    BusID       "PCI:6:0:0"  # Sample: "PCI:0:2:0"<br>EndSection<br><br>Section "Screen"<br>    Identifier "amdgpu"<br>    Device "amdgpu"<br>EndSection<br></div><div><br></div><div>cat /etc/X11/xorg.conf.d/10-prime_amdgpu.conf.hold <br>Section "ServerLayout"<br>    Identifier  "layout"<br>    Screen 0    "amdgpu"<br>    Inactive    "nvidia"<br>    Option      "AllowNVIDIAGPUScreens"<br>EndSection<br><br>Section "Device"<br>    Identifier  "nvidia"<br>    Driver      "nvidia"<br>    BusID       "PCI:1:0:0" # Sample: "PCI:1:0:0"<br>EndSection<br><br>Section "Screen"<br>    Identifier  "nvidia"<br>    Device      "nvidia"<br>    Option      "AllowEmptyInitialConfiguration"      <br>    #  Option         "ForceFullCompositionPipeline" "on"<br>    #  Option         "AllowIndirectGLXProtocol" "off"<br>    #  Option         "TripleBuffer" "on"<br>EndSection<br><br>Section "Device"<br>    Identifier  "amdgpu"<br>    Driver      "amdgpu"<br>    #   Driver      "modesetting"<br>    BusID       "PCI:6:0:0"  # Sample: "PCI:0:2:0"<br>EndSection<br><br>Section "Screen"<br>    Identifier "amdgpu"<br>    Device "amdgpu"<br>EndSection<br><br></div></div>