You are not logged in.

#1 2024-03-31 18:23:05

4javier
Member
From: Italia
Registered: 2010-12-01
Posts: 115

linux-6.8.2.arch2-1 fails to boot due to nouveau driver

Unfortunately I cannot spend too much time on debug on this system being it the job one.
Upgrading to kernel 6.8.2 this  HP 470 G9 with 12th gen intel and GeForce MX550 stops booting correctly due to a nouveau dump.
It looks like booting halts before the system can flush the log to journal, so I got no entry for those failing boots.
It can be booted passing `nouveau.modeset=0` to bootloader commandline, but I experienced a neverending fan spinning in that case.
6.8.1 works flawlessly without any needs of disabling nouveau.
I open this thread more to help anyone else that could suffer the issue, and I'll wait for next kernel release.

Offline

#2 2024-03-31 22:00:24

seth
Member
Registered: 2012-09-03
Posts: 51,772

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

Does it look like https://bbs.archlinux.org/viewtopic.php … 6#p2160666 ?
Since you've a turing chip, have you considered nvidia or nvidia-open?

Offline

#3 2024-03-31 22:01:08

wohlraj
Member
Registered: 2024-03-31
Posts: 5

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

Exact same issue here on a Dell Precision 5570, 12th gen Intel and an RTX A1000. I can spend some time fetching logs and whatnot, but not sure where to start.
Falling back to 6.8.1 or lts for now.

Last edited by wohlraj (2024-03-31 22:07:26)

Offline

#4 2024-03-31 22:34:04

4javier
Member
From: Italia
Registered: 2010-12-01
Posts: 115

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

seth wrote:

Does it look like https://bbs.archlinux.org/viewtopic.php … 6#p2160666 ?
Since you've a turing chip, have you considered nvidia or nvidia-open?

I don't think it's the exact same issue of that thread because if I'm not wrong my boot didn't even reach udev.
About nvidia driver, I didn't know about nvidia-open at all, while I prefer to not install the closed one because they were quite unstable when I tried them, and top of all because I don't really care about discrete card, being that a work laptop. The only thing that matters is the external HDMI port, and I can't remember which one of the two gpus drives it. That's why I prefer to stick with in-tree drivers.

wohlraj wrote:

Exact same issue here on a Dell Precision 5570, 12th gen Intel and an RTX A1000. I can spend some time fetching logs and whatnot, but not sure where to start.
Falling back to 6.8.1 or lts for now.

If, like on my system, your hanging boot doesn't get logged (you can verify that simply with

journalctl -b a_number

where a_number is the nth boot before the last one), just remove eventual

quite

flag from bootloader command line, and maybe put loglevel to something high like 5 or 6, then look at the console while booting and take a pic of the line where it hangs.

Offline

#5 2024-03-31 23:04:03

seth
Member
Registered: 2012-09-03
Posts: 51,772

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

nb. that nvidia-open is only the kernel module, you'll still need nvidia-utils for the userspace and the module is considered beta-qaulity, https://wiki.archlinux.org/title/NVIDIA#Installation
Do you have any trace (in doubt a photo) of the nouveau dump?

I don't really care about discrete card, being that a work laptop. The only thing that matters is the external HDMI port, and I can't remember which one of the two gpus drives it.

xorg log and /sys/class/drm can tell wink
But typically the nvidia GPU - unless you can perhaps deactivate that in the BIOS (might spare you some Wattage)?

Offline

#6 2024-04-01 07:50:38

wohlraj
Member
Registered: 2024-03-31
Posts: 5

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

Here's the console with loglevel=6, stuck on nouveau dumps: https://imgur.com/fpzziX6

Offline

#7 2024-04-01 08:01:07

seth
Member
Registered: 2012-09-03
Posts: 51,772

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

A bit more up would ahve been more relevant, but it's when the driver probes the device - it might help to not have nouveau in the initramfs (if you do) but the driver also has rather long history itr (even during runtime, ppl. call "lspci" and nouveau halts the kernel)

Offline

#8 2024-04-01 08:10:41

wohlraj
Member
Registered: 2024-03-31
Posts: 5

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

seth wrote:

A bit more up would ahve been more relevant, but it's when the driver probes the device - it might help to not have nouveau in the initramfs (if you do) but the driver also has rather long history itr (even during runtime, ppl. call "lspci" and nouveau halts the kernel)

Two more pictures of the console, from the start: https://imgur.com/a/AwZF529

The rest of the logs are buried behind the stack strace sad

Offline

#9 2024-04-01 08:36:43

seth
Member
Registered: 2012-09-03
Posts: 51,772

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

There're certainly pelnty of bus issues, what's on 00:0e (resp. lspci, can be from a working kernel or w/ "modprobe.blacklist=nouveau")?

Offline

#10 2024-04-01 08:41:46

wohlraj
Member
Registered: 2024-03-31
Posts: 5

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

seth wrote:

There're certainly pelnty of bus issues, what's on 00:0e (resp. lspci, can be from a working kernel or w/ "modprobe.blacklist=nouveau")?

This is 00:0e:

0000:00:0e.0 RAID bus controller: Intel Corporation Volume Management Device NVMe RAID Controller

Offline

#11 2024-04-01 08:45:25

seth
Member
Registered: 2012-09-03
Posts: 51,772

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

https://wiki.archlinux.org/title/Solid_ … leshooting
"iommu=soft nvme_core.default_ps_max_latency_us=0", but probably not related - if you want to stick w/ nouveau (and the latest kernel) and you've it in the initramfs (kms hook?) I'd remove it from there to see whether it's a race between driver and hardware

Offline

#12 2024-04-01 08:56:33

wohlraj
Member
Registered: 2024-03-31
Posts: 5

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

Thanks, removing the kms hook solves the boot issue!

Offline

#13 2024-04-01 09:53:19

4javier
Member
From: Italia
Registered: 2010-12-01
Posts: 115

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

So, the problem arises just in initramfs? Strange.

Offline

#14 2024-04-01 12:49:43

seth
Member
Registered: 2012-09-03
Posts: 51,772

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

It's probably not the initramfs but that the module loads early, the HW isn't entirely ready (or there's toomuch™ traffic on the bus) and nouveau can't deal w/ that - could you confirm wohlraj's finding?

Offline

#15 2024-04-01 13:09:14

4javier
Member
From: Italia
Registered: 2010-12-01
Posts: 115

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

Kinda.
I have no kms hooks in my mkinitcpio, and nouveau was early loaded as module.
Removing it from modules array actually makes the boot completing, but I got the fan spinning and this error stacktrace in the journal

apr 01 15:03:48 gianpiero-work kernel: ------------[ cut here ]------------
apr 01 15:03:48 gianpiero-work kernel: WARNING: CPU: 10 PID: 323 at drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c:112 r535_gsp_msgq_wait+0x1b7/0x1e0 [nouveau]
apr 01 15:03:48 gianpiero-work kernel: Modules linked in: ccm snd_seq_dummy snd_hrtimer snd_seq rfcomm snd_seq_device snd_ctl_led ledtrig_audio snd_soc_skl_hda_dsp snd_soc_hdac_hdmi snd_sof_probes snd_soc_intel_hda_dsp_common xe snd_hda_codec_hdmi snd_hda_codec_realtek drm_suballoc_helper snd_hda_codec_generic snd_soc_dmic intel_uncore_frequency intel_uncore_frequency_common snd_sof_pci_intel_tgl snd_sof_intel_hda_common soundwire_intel snd_sof_intel_hda_mlink soundwire_cadence cmac snd_sof_intel_hda algif_hash snd_sof_pci x86_pkg_temp_thermal intel_powerclamp algif_skcipher snd_sof_xtensa_dsp af_alg snd_sof kvm_intel bnep snd_sof_utils snd_soc_hdac_hda snd_hda_ext_core coretemp snd_soc_acpi_intel_match kvm snd_soc_acpi soundwire_generic_allocation soundwire_bus irqbypass snd_soc_core crct10dif_pclmul crc32_pclmul polyval_clmulni snd_compress polyval_generic ac97_bus gf128mul snd_pcm_dmaengine ghash_clmulni_intel rtw89_8852be sha512_ssse3 snd_hda_intel rtw89_8852b sha256_ssse3 sha1_ssse3 snd_intel_dspcfg processor_thermal_device_pci uvcvideo
apr 01 15:03:48 gianpiero-work kernel:  rtw89_pci aesni_intel snd_intel_sdw_acpi processor_thermal_device videobuf2_vmalloc nouveau(+) rtw89_core crypto_simd drm_gpuvm processor_thermal_wt_hint uvc i915 cryptd snd_hda_codec hid_multitouch processor_thermal_rfim videobuf2_memops btusb drm_exec snd_hda_core rapl mac80211 intel_rapl_msr btrtl processor_thermal_rapl drm_buddy videobuf2_v4l2 gpu_sched btintel snd_hwdep mei_pxp btbcm i2c_algo_bit intel_rapl_common drm_ttm_helper snd_pcm iTCO_wdt videodev mei_hdcp btmtk ttm intel_cstate snd_timer processor_thermal_wt_req vfat intel_pmc_bxt libarc4 iTCO_vendor_support ee1004 fat bluetooth drm_display_helper videobuf2_common spi_nor snd processor_thermal_power_floor intel_lpss_pci mei_me processor_thermal_mbox i2c_i801 cfg80211 intel_uncore mtd pcspkr mc soundcore ecdh_generic mei cec i2c_smbus intel_lpss intel_gtt i2c_hid_acpi igen6_edac int340x_thermal_zone idma64 i2c_hid intel_pmc_core intel_vsec int3400_thermal joydev pmt_telemetry video acpi_thermal_rel pinctrl_tigerlake pmt_class mousedev acpi_tad
apr 01 15:03:48 gianpiero-work kernel:  acpi_pad mac_hid hp_wmi platform_profile sparse_keymap rfkill wmi_bmof mxm_wmi pkcs8_key_parser sg crypto_user hp_wmi_sensors wmi fuse loop dm_mod nfnetlink ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 hid_generic usbhid serio_raw atkbd crc32c_intel libps2 vivaldi_fmap nvme xhci_pci nvme_core i8042 spi_intel_pci xhci_pci_renesas spi_intel nvme_auth serio
apr 01 15:03:48 gianpiero-work kernel: CPU: 10 PID: 323 Comm: (udev-worker) Tainted: G        W          6.8.2-arch2-1 #1 a430fb92f7ba43092b62bbe6bac995458d3d442d
apr 01 15:03:48 gianpiero-work kernel: Hardware name: HP HP 470 17 inch G9 Notebook PC/899C, BIOS F.06 07/17/2023
apr 01 15:03:48 gianpiero-work kernel: RIP: 0010:r535_gsp_msgq_wait+0x1b7/0x1e0 [nouveau]
apr 01 15:03:48 gianpiero-work kernel: Code: 72 36 48 89 da 48 81 c3 ff 0f 00 00 e8 a2 7f 45 d2 48 c1 eb 0c 41 01 dd 0f ae f0 49 8b 87 90 08 00 00 44 89 28 e9 8a fe ff ff <0f> 0b 48 c7 c5 92 ff ff ff e9 7c fe ff ff 48 c7 c7 52 c8 9e c1 e8
apr 01 15:03:48 gianpiero-work kernel: RSP: 0018:ffffaab703253730 EFLAGS: 00010246
apr 01 15:03:48 gianpiero-work kernel: RAX: 0000000000000000 RBX: 000000000000002a RCX: 0000000000cf3a44
apr 01 15:03:48 gianpiero-work kernel: RDX: 0000000000000000 RSI: 0000000055555554 RDI: ffffaab703253688
apr 01 15:03:48 gianpiero-work kernel: RBP: 0000000000000001 R08: 0000000000000000 R09: 0000000000000000
apr 01 15:03:48 gianpiero-work kernel: R10: 0000000000000001 R11: 0000000000000100 R12: 0000000000000020
apr 01 15:03:48 gianpiero-work kernel: R13: ffffaab703253778 R14: 0000000000000020 R15: ffff9c5a03357000
apr 01 15:03:48 gianpiero-work kernel: FS:  00007ac2e4d39540(0000) GS:ffff9c618fa80000(0000) knlGS:0000000000000000
apr 01 15:03:48 gianpiero-work kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
apr 01 15:03:48 gianpiero-work kernel: CR2: 0000784e90000020 CR3: 00000001052ea000 CR4: 0000000000f50ef0
apr 01 15:03:48 gianpiero-work kernel: PKRU: 55555554
apr 01 15:03:48 gianpiero-work kernel: Call Trace:
apr 01 15:03:48 gianpiero-work kernel:  <TASK>
apr 01 15:03:48 gianpiero-work kernel:  ? r535_gsp_msgq_wait+0x1b7/0x1e0 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  ? __warn+0x81/0x130
apr 01 15:03:48 gianpiero-work kernel:  ? r535_gsp_msgq_wait+0x1b7/0x1e0 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  ? report_bug+0x171/0x1a0
apr 01 15:03:48 gianpiero-work kernel:  ? handle_bug+0x3c/0x80
apr 01 15:03:48 gianpiero-work kernel:  ? exc_invalid_op+0x17/0x70
apr 01 15:03:48 gianpiero-work kernel:  ? asm_exc_invalid_op+0x1a/0x20
apr 01 15:03:48 gianpiero-work kernel:  ? r535_gsp_msgq_wait+0x1b7/0x1e0 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  r535_gsp_msg_recv+0x4e/0x230 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  r535_gsp_rpc_send+0x1c6/0x2e0 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  r535_gsp_rpc_push+0x147/0x160 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  r535_gsp_rpc_rm_free+0x75/0xd0 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  r535_gsp_device_dtor+0x2b/0x60 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  nvkm_vmm_unref+0xb1/0x2d0 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  nvkm_uvmm_dtor+0x16/0x20 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  nvkm_object_dtor+0xb5/0x190 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  nvkm_object_del+0x2e/0xd0 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  nvkm_ioctl_del+0x37/0xa0 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  nvkm_ioctl+0x10b/0x250 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  nvif_object_dtor+0x81/0xb0 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  nouveau_vmm_fini+0x1f/0x30 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  nouveau_cli_fini+0x96/0xf0 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  nouveau_drm_device_init+0x1b9/0x9f0 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  ? pci_update_current_state+0x72/0xb0
apr 01 15:03:48 gianpiero-work kernel:  nouveau_drm_probe+0x12c/0x280 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  local_pci_probe+0x42/0xa0
apr 01 15:03:48 gianpiero-work kernel:  pci_device_probe+0xc1/0x260
apr 01 15:03:48 gianpiero-work kernel:  ? sysfs_do_create_link_sd+0x6e/0xe0
apr 01 15:03:48 gianpiero-work kernel:  really_probe+0x19b/0x3e0
apr 01 15:03:48 gianpiero-work kernel:  ? __pfx___driver_attach+0x10/0x10
apr 01 15:03:48 gianpiero-work kernel:  __driver_probe_device+0x78/0x160
apr 01 15:03:48 gianpiero-work kernel:  driver_probe_device+0x1f/0x90
apr 01 15:03:48 gianpiero-work kernel:  __driver_attach+0xd2/0x1c0
apr 01 15:03:48 gianpiero-work kernel:  bus_for_each_dev+0x85/0xd0
apr 01 15:03:48 gianpiero-work kernel:  bus_add_driver+0x116/0x220
apr 01 15:03:48 gianpiero-work kernel:  driver_register+0x59/0x100
apr 01 15:03:48 gianpiero-work kernel:  ? __pfx_nouveau_drm_init+0x10/0x10 [nouveau b8e6757f25c87f7bbb7f1b0dd0b0d1417a90c758]
apr 01 15:03:48 gianpiero-work kernel:  do_one_initcall+0x58/0x320
apr 01 15:03:48 gianpiero-work kernel:  do_init_module+0x60/0x240
apr 01 15:03:48 gianpiero-work kernel:  init_module_from_file+0x89/0xe0
apr 01 15:03:48 gianpiero-work kernel:  idempotent_init_module+0x120/0x2b0
apr 01 15:03:48 gianpiero-work kernel:  __x64_sys_finit_module+0x5e/0xb0
apr 01 15:03:48 gianpiero-work kernel:  do_syscall_64+0x86/0x170
apr 01 15:03:48 gianpiero-work kernel:  ? __rseq_handle_notify_resume+0xa9/0x4f0
apr 01 15:03:48 gianpiero-work kernel:  ? syscall_exit_to_user_mode+0x80/0x230
apr 01 15:03:48 gianpiero-work kernel:  ? do_syscall_64+0x96/0x170
apr 01 15:03:48 gianpiero-work kernel:  ? __irq_exit_rcu+0x4b/0xc0
apr 01 15:03:48 gianpiero-work kernel:  entry_SYSCALL_64_after_hwframe+0x6e/0x76
apr 01 15:03:48 gianpiero-work kernel: RIP: 0033:0x7ac2e512488d
apr 01 15:03:48 gianpiero-work kernel: Code: ff c3 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 73 14 0d 00 f7 d8 64 89 01 48
apr 01 15:03:48 gianpiero-work kernel: RSP: 002b:00007ffd239a8b78 EFLAGS: 00000246 ORIG_RAX: 0000000000000139
apr 01 15:03:48 gianpiero-work kernel: RAX: ffffffffffffffda RBX: 00005bada1344a40 RCX: 00007ac2e512488d
apr 01 15:03:48 gianpiero-work kernel: RDX: 0000000000000004 RSI: 00007ac2e56a9376 RDI: 000000000000001b
apr 01 15:03:48 gianpiero-work kernel: RBP: 00007ac2e56a9376 R08: 00000005bada1347 R09: fffffffffffffe88
apr 01 15:03:48 gianpiero-work kernel: R10: 0000000000000050 R11: 0000000000000246 R12: 0000000000020000
apr 01 15:03:48 gianpiero-work kernel: R13: 00005bada1341960 R14: 0000000000000000 R15: 00005bada1347710
apr 01 15:03:48 gianpiero-work kernel:  </TASK>
apr 01 15:03:48 gianpiero-work kernel: ---[ end trace 0000000000000000 ]---

Theses days I really have no more time to play with it, so I think I'll wait for .3 release

Offline

#16 2024-04-01 13:20:08

loqs
Member
Registered: 2014-03-06
Posts: 17,459

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

Of the two nouveau commits added in 8.6.2 this looks more likely to me https://git.kernel.org/pub/scm/linux/ke … dfa1b460a2
Edit:
linux 6.8.2.arch2 with b15bce16661e5cc58e2c66a4f26683dfa1b460a2 reverted
https://drive.google.com/file/d/16_Mw0s … sp=sharing linux-6.8.2.arch2-1.2-x86_64.pkg.tar.zst
https://drive.google.com/file/d/1E2pK4i … sp=sharing linux-headers-6.8.2.arch2-1.2-x86_64.pkg.tar.zst

Last edited by loqs (2024-04-01 13:40:57)

Offline

#17 2024-04-07 12:52:19

4javier
Member
From: Italia
Registered: 2010-12-01
Posts: 115

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

Issue still present with 6.8.4

Last edited by 4javier (2024-04-07 12:52:37)

Offline

#18 2024-04-07 13:06:55

loqs
Member
Registered: 2014-03-06
Posts: 17,459

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

4javier wrote:

Issue still present with 6.8.4

Did you try linux 6.8.2.arch2 with b15bce16661e5cc58e2c66a4f26683dfa1b460a2 reverted?

Offline

#19 2024-04-07 13:14:20

4javier
Member
From: Italia
Registered: 2010-12-01
Posts: 115

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

loqs wrote:
4javier wrote:

Issue still present with 6.8.4

Did you try linux 6.8.2.arch2 with b15bce16661e5cc58e2c66a4f26683dfa1b460a2 reverted?

I'm really sorry for the late reply.
You providing the pkg totally flew over my head.
I noticed it just some minutes ago when I left my last message.
I just started it and it looks to work flawlessly.
No issue with initramfs nor with resume from suspend.
Thanks a lot!
Are you in touch with someone to notify your findings?

Offline

#20 2024-04-07 13:29:51

loqs
Member
Registered: 2014-03-06
Posts: 17,459

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

4javier wrote:

Are you in touch with someone to notify your findings?

No I just built the kernel for you to test.  You can either reply to https://lore.kernel.org/all/20240314014 … gmail.com/ instructions in link on how to reply or open a bug report on https://gitlab.freedesktop.org/drm/nouveau

Offline

#21 2024-04-07 14:24:37

4javier
Member
From: Italia
Registered: 2010-12-01
Posts: 115

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

Offline

#22 2024-04-08 12:05:03

loqs
Member
Registered: 2014-03-06
Posts: 17,459

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

linux 6.8.4-arch1-1 with https://lore.kernel.org/dri-devel/20240 … gmail.com/ applied
https://drive.google.com/file/d/17o9XkY … sp=sharing linux-6.8.4.arch1-1.2-x86_64.pkg.tar.zst
https://drive.google.com/file/d/1moQLdt … sp=sharing linux-headers-6.8.4.arch1-1.2-x86_64.pkg.tar.zst

Offline

#23 2024-04-09 13:02:35

4javier
Member
From: Italia
Registered: 2010-12-01
Posts: 115

Re: linux-6.8.2.arch2-1 fails to boot due to nouveau driver

Very nice of you to provide the patched packages.
I hope I'll be able to give it a shot later today.
Thanks again.

Offline

Board footer

Powered by FluxBB