11 lines
317 B
Plaintext
11 lines
317 B
Plaintext
|
# System bootloader configuration
|
||
|
bootloader --location=none --append="i915.force_probe=* rd.driver.blacklist=nouveau"
|
||
|
# Clear the Master Boot Record
|
||
|
zerombr
|
||
|
# Partition clearing information
|
||
|
clearpart --all
|
||
|
# Disk partitioning information
|
||
|
part /boot --fstype="ext4" --size=3000
|
||
|
part / --fstype="ext4" --size=12000
|
||
|
|