-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- UEFI and Legacy backends now auto-generate GRUB configuration files at /boot/grub2/grub.cfg - Added a special bootloader option called `grub_bios` that will set the disk image to boot in Legacy BIOS mode - Updated tests to Ultramarine 40
- Loading branch information
1 parent
5ccdd8e
commit a0e743a
Showing
6 changed files
with
172 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# Example manifest for a Katsu build | ||
builder: dnf | ||
distro: Katsu Ultramarine | ||
bootloader: grub-bios | ||
|
||
scripts: | ||
post: | ||
- id: post-test | ||
name: Postinstall test | ||
inline: | | ||
echo "Hello from post.sh" | ||
- id: image-cleanup | ||
name: Clean up root filesystem | ||
file: modules/scripts/image-cleanup.sh | ||
|
||
- id: selinux-label | ||
name: Relabel SELinux for new filesystem | ||
file: modules/scripts/selinux.sh | ||
|
||
|
||
disk: | ||
size: 8GiB | ||
partitions: | ||
- label: mbr_grub | ||
type: 21686148-6449-6E6F-744E-656564454649 | ||
size: 1MiB | ||
filesystem: none # no filesystem | ||
mountpoint: "" | ||
|
||
- label: boot | ||
type: xbootldr | ||
size: 1GiB | ||
filesystem: ext4 | ||
mountpoint: /boot | ||
|
||
- label: root | ||
type: xbootldr | ||
flags: | ||
- grow-fs | ||
# size: 2.5MiB | ||
filesystem: ext4 | ||
mountpoint: / | ||
|
||
users: | ||
- username: ultramarine | ||
# plaintext password: ultramarine | ||
password: "$y$j9T$6/DebcxXazPrtBYnNXtEM.$yaUJHww5Mo1L8xNJ9IDJ.bvKOrIJxAG9PGQKWioBMx3" | ||
groups: | ||
- wheel | ||
|
||
|
||
dnf: | ||
dnf5: false | ||
releasever: 40 | ||
repodir: modules/repodir/ | ||
options: | ||
- --setopt=cachedir=/var/cache/dnf | ||
- --nogpgcheck | ||
- --setopt=keepcache=True | ||
- --verbose | ||
exclude: | ||
- fedora-release* | ||
- generic-release* | ||
packages: | ||
- filesystem | ||
- setup | ||
- lvm2 | ||
- btrfs-progs | ||
- dmraid | ||
- nvme-cli | ||
- kernel | ||
- glibc | ||
- glibc-common | ||
- dracut-config-generic | ||
- dracut-tools | ||
- dnf | ||
- dracut | ||
# - mkpasswd # maybe not needed soon | ||
- "@core" | ||
- "@standard" | ||
- grub2-tools | ||
- "@hardware-support" | ||
- NetworkManager | ||
- rpm | ||
- libgomp | ||
- ultramarine-release-identity-basic | ||
- ultramarine-release-basic | ||
- fedora-repos | ||
|
||
arch_packages: | ||
x86_64: | ||
- grub2-pc | ||
- grub2-pc-modules | ||
- shim-x64 | ||
- shim-unsigned-x64 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash -x | ||
|
||
grub2-mkconfig -o /boot/grub2/grub.cfg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters