@gumanzoy My comparison is with initrd.img without firmware included and initrd1.xz also without firmware included.
With both tests I have package firmware-misc-nonfree installed.
On both I ran dmesg | grep i915
Output with live-boot initrd.img: (failed to load the firmware, which is good in my case and explains why there's no crash).
Code: Select all
root@live:~# dmesg | grep i915
[ 4.853245] i915 0000:00:02.0: [drm] Unknown revid 0x06
[ 4.855747] i915 0000:00:02.0: [drm] VT-d active for gfx access
[ 4.860384] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 4.860452] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[ 4.860521] i915 0000:00:02.0: [drm] couldn't get memory information
[ 4.884473] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 4.885440] i915 0000:00:02.0: firmware: failed to load i915/glk_dmc_ver1_04.bin (-2)
[ 4.885461] i915 0000:00:02.0: firmware: failed to load i915/glk_dmc_ver1_04.bin (-2)
[ 4.885467] i915 0000:00:02.0: Direct firmware load for i915/glk_dmc_ver1_04.bin failed with error -2
[ 4.885474] i915 0000:00:02.0: [drm] Failed to load DMC firmware i915/glk_dmc_ver1_04.bin. Disabling runtime power management.
[ 4.885479] i915 0000:00:02.0: [drm] DMC firmware homepage: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
[ 5.023169] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[ 5.291709] fbcon: i915drmfb (fb0) is primary device
[ 5.329350] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 13.543790] snd_hda_intel 0000:00:0e.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 13.853609] mei_hdcp 0000:00:0f.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
Output with porteus-boot initrd1.xz: (firmware loading successful, bad, resulting in the crash when changing resolution)
This is without the change I recently made (no i915 modprobed from the init)
Code: Select all
oot@live:~# dmesg | grep i915
[ 7.813049] i915 0000:00:02.0: [drm] Unknown revid 0x06
[ 7.813507] i915 0000:00:02.0: [drm] VT-d active for gfx access
[ 7.817344] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 7.817440] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[ 7.817517] i915 0000:00:02.0: [drm] couldn't get memory information
[ 7.839059] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 7.840722] i915 0000:00:02.0: firmware: direct-loading firmware i915/glk_dmc_ver1_04.bin
[ 7.841178] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/glk_dmc_ver1_04.bin (v1.4)
[ 8.029624] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[ 8.308906] fbcon: i915drmfb (fb0) is primary device
[ 8.308830] snd_hda_intel 0000:00:0e.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 8.309212] mei_hdcp 0000:00:0f.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[ 8.378433] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
So for some reason booting with initrd.img prevents loading the i915 firmware.
EDIT: For what it's worth: Other test I did now with the initrd1.xz with the i915 driver modprobe'd and got exactly the same output (failed to load firmware) as above with live-boot (and no crashing of course). So that makes me think that perhaps live-boot does load i915 from the initrd.
Not saying that it's good that firmware fails to load though.