1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2024-12-23 15:37:42 +01:00

More dracut work

This commit is contained in:
j1nx 2024-12-16 15:59:10 +00:00
parent 3fa282766d
commit dd2ad17869
3 changed files with 9 additions and 5 deletions

@ -1 +1 @@
Subproject commit fb2de1fc070863113f1e50d6588ed561b9faeb2e
Subproject commit cb869be2b2c5788ebe6cea31d4d6b2718441e95c

View File

@ -73,11 +73,11 @@ regexp --set 1:boothd (.+),.+ ${root}
save_env -f /EFI/BOOT/grub.env ustate boot_counter rootfs
menuentry "OpenVoiceOS - Slot A ${rootfs_status_A}" {
linux (${boothd},gpt2)/boot/kernel root=PARTUUID=c0932a41-44cf-463b-8152-d43188553ed4 rootrw=PARTUUID=f1326040-5236-40eb-b683-aaa100a9afcf init=/init $default_cmdline $cmdline
linux (${boothd},gpt2)/boot/kernel root=UUID=c0932a41-44cf-463b-8152-d43188553ed4 rootrw=UUID=f1326040-5236-40eb-b683-aaa100a9afcf $default_cmdline $cmdline
}
menuentry "OpenVoiceOS - Slot B ${rootfs_status_B}" {
linux (${boothd},gpt3)/boot/kernel root=PARTUUID=3adea996-45ad-4928-920e-ffb5aedd00cb rootrw=PARTUUID=f1326040-5236-40eb-b683-aaa100a9afcf init=/init $default_cmdline $cmdline
linux (${boothd},gpt3)/boot/kernel root=UUID=3adea996-45ad-4928-920e-ffb5aedd00cb rootrw=UUID=f1326040-5236-40eb-b683-aaa100a9afcf $default_cmdline $cmdline
}
menuentry "OpenVoiceOS - Slot A (Rescue shell)" {

View File

@ -1,7 +1,11 @@
BR2_aarch64=y
BR2_cortex_a72=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_12=y
BR2_BINUTILS_VERSION_2_41_X=y
BR2_BINUTILS_GPROFNG=y
BR2_GCC_VERSION_14_X=y
BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_TOOLCHAIN_BUILDROOT_FORTRAN=y
BR2_TOOLCHAIN_GLIBC_GCONV_LIBS_COPY=y
BR2_WGET="wget --passive-ftp -nd -t 3"
BR2_DL_DIR="../../downloads"