mirror of
https://github.com/Fohdeesha/lab-docu.git
synced 2024-12-02 11:43:22 +01:00
25f5fec6f3
global iommu=off also partly disables SWIOMMU - which takes you down to kernel panic avenue
16 lines
443 B
Bash
16 lines
443 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
lb config noauto \
|
|
--mode debian \
|
|
--architectures amd64 \
|
|
--debian-installer none \
|
|
--archive-areas "main contrib non-free" \
|
|
--apt-indices false \
|
|
--bootappend-live "boot=live components iomem=relaxed intel_iommu=off amd_iommu=off" \
|
|
--bootappend-live-failsafe "boot=live components iomem=relaxed intel_iommu=off amd_iommu=off" \
|
|
--binary-image iso-hybrid \
|
|
--memtest none \
|
|
"${@}"
|