lib/sysroot: Add comments and debug statements around sysroot parsing
Was looking at this code more closely today to investigate issues related to bootlink mismatches (#2283).
This commit is contained in:
parent
fd9d422c51
commit
02b6197924
|
|
@ -449,6 +449,7 @@ _ostree_sysroot_parse_deploy_path_name (const char *name,
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* For a given bootversion, get its subbootversion from `/ostree/boot.$bootversion`. */
|
||||||
gboolean
|
gboolean
|
||||||
_ostree_sysroot_read_current_subbootversion (OstreeSysroot *self,
|
_ostree_sysroot_read_current_subbootversion (OstreeSysroot *self,
|
||||||
int bootversion,
|
int bootversion,
|
||||||
|
|
@ -465,6 +466,7 @@ _ostree_sysroot_read_current_subbootversion (OstreeSysroot *self,
|
||||||
return FALSE;
|
return FALSE;
|
||||||
if (errno == ENOENT)
|
if (errno == ENOENT)
|
||||||
{
|
{
|
||||||
|
g_debug ("Didn't find $sysroot/ostree/boot.%d symlink; assuming subbootversion 0", bootversion);
|
||||||
*out_subbootversion = 0;
|
*out_subbootversion = 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
@ -516,6 +518,7 @@ compare_loader_configs_for_sorting (gconstpointer a_pp,
|
||||||
return compare_boot_loader_configs (a, b);
|
return compare_boot_loader_configs (a, b);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Read all the bootconfigs from `/boot/loader/`. */
|
||||||
gboolean
|
gboolean
|
||||||
_ostree_sysroot_read_boot_loader_configs (OstreeSysroot *self,
|
_ostree_sysroot_read_boot_loader_configs (OstreeSysroot *self,
|
||||||
int bootversion,
|
int bootversion,
|
||||||
|
|
@ -574,6 +577,7 @@ _ostree_sysroot_read_boot_loader_configs (OstreeSysroot *self,
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Get the bootversion from the `/boot/loader` symlink. */
|
||||||
static gboolean
|
static gboolean
|
||||||
read_current_bootversion (OstreeSysroot *self,
|
read_current_bootversion (OstreeSysroot *self,
|
||||||
int *out_bootversion,
|
int *out_bootversion,
|
||||||
|
|
@ -587,6 +591,7 @@ read_current_bootversion (OstreeSysroot *self,
|
||||||
return FALSE;
|
return FALSE;
|
||||||
if (errno == ENOENT)
|
if (errno == ENOENT)
|
||||||
{
|
{
|
||||||
|
g_debug ("Didn't find $sysroot/boot/loader symlink; assuming bootversion 0");
|
||||||
ret_bootversion = 0;
|
ret_bootversion = 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
@ -698,7 +703,7 @@ parse_deployment (OstreeSysroot *self,
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
g_autofree char *errprefix =
|
g_autofree char *errprefix =
|
||||||
g_strdup_printf ("Parsing deployment %i in stateroot '%s'", treebootserial, osname);
|
g_strdup_printf ("Parsing deployment %s in stateroot '%s'", boot_link, osname);
|
||||||
GLNX_AUTO_PREFIX_ERROR(errprefix, error);
|
GLNX_AUTO_PREFIX_ERROR(errprefix, error);
|
||||||
|
|
||||||
const char *relative_boot_link = boot_link;
|
const char *relative_boot_link = boot_link;
|
||||||
|
|
@ -799,6 +804,8 @@ get_ostree_kernel_arg_from_config (OstreeBootconfigParser *config)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* From a BLS config, use its ostree= karg to find the deployment it points to and add it to
|
||||||
|
* the inout_deployments array. */
|
||||||
static gboolean
|
static gboolean
|
||||||
list_deployments_process_one_boot_entry (OstreeSysroot *self,
|
list_deployments_process_one_boot_entry (OstreeSysroot *self,
|
||||||
OstreeBootconfigParser *config,
|
OstreeBootconfigParser *config,
|
||||||
|
|
@ -1016,6 +1023,9 @@ _ostree_sysroot_reload_staged (OstreeSysroot *self,
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Loads the current bootversion, subbootversion, and deplyments, starting from the
|
||||||
|
* bootloader configs which are the source of truth.
|
||||||
|
*/
|
||||||
static gboolean
|
static gboolean
|
||||||
sysroot_load_from_bootloader_configs (OstreeSysroot *self,
|
sysroot_load_from_bootloader_configs (OstreeSysroot *self,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue