X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fdistro-install-common%2Flibreboot_grub.cfg;h=16fec9cd90fd7da6775911da3ffc4389432b6559;hb=61c3a58fcfadab7c333487f887b3f9f3a53bb93a;hp=4610044a7e60b6d3cfd1f785bdff581a12f30a39;hpb=ed3681256885d295f39d5df60784d3281a2f8719;p=automated-distro-installer diff --git a/fai/config/distro-install-common/libreboot_grub.cfg b/fai/config/distro-install-common/libreboot_grub.cfg index 4610044..16fec9c 100644 --- a/fai/config/distro-install-common/libreboot_grub.cfg +++ b/fai/config/distro-install-common/libreboot_grub.cfg @@ -14,7 +14,7 @@ function save_chosen { } # fai_check is so we can act like a pxe boot, but just for fai, and by -# using /stretch_bootstrap to do it. We toggle on and off the grub var +# using /buster_bootstrap to do it. We toggle on and off the grub var # did_fai_check so we can do the check every other boot. Then # /debian_bootstrap checks for that var on boot and if we want to do a # fai check, it does it, then reboots. But fai-check also sets @@ -25,10 +25,10 @@ function save_chosen { # We don't set this to fai check so we can't get into # an infinite reboot cycle. We depend on the os to # create the initial grubenv file. -set default=/debianstretch_bootstrap # could use 0 here. +set default=/debianbuster_bootstrap # could use 0 here. set timeout=1 -for part in (ahci*4) (ata*4); do +for part in (ahci*5) (ata*5); do envfile=$part/grubenv if [ -s $envfile ]; then load_env --file $envfile @@ -43,7 +43,7 @@ done did_fai_check=false -bs_dir=/debianstretch_bootstrap +bs_dir=/debianbuster_bootstrap menuentry $bs_dir --id=$bs_dir { # note, we might be able to use $chosen and avoid setting this here, # and set it inside save_chosen. but I haven't tested it,