mirror of
https://github.com/vivier/EMILE.git
synced 2025-01-18 06:31:23 +00:00
Add some verbosity
This commit is contained in:
parent
f5963dc437
commit
bae6b7b888
@ -307,12 +307,18 @@ int main(int argc, char** argv)
|
|||||||
do {
|
do {
|
||||||
if (!emile_config_get(config, CONFIG_TITLE, &title))
|
if (!emile_config_get(config, CONFIG_TITLE, &title))
|
||||||
config_add_property(configuration, "title", title);
|
config_add_property(configuration, "title", title);
|
||||||
|
if (verbose)
|
||||||
|
printf("title %s\n", title);
|
||||||
if (!emile_config_get(config, CONFIG_KERNEL, &kernel_image))
|
if (!emile_config_get(config, CONFIG_KERNEL, &kernel_image))
|
||||||
{
|
{
|
||||||
if (emile_is_url(kernel_image))
|
if (emile_is_url(kernel_image))
|
||||||
|
{
|
||||||
|
if (verbose)
|
||||||
|
printf(" kernel %s\n", kernel_image);
|
||||||
config_set_indexed_property(configuration,
|
config_set_indexed_property(configuration,
|
||||||
"title", title,
|
"title", title,
|
||||||
"kernel", kernel_image);
|
"kernel", kernel_image);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (kernel_ondisk == NULL)
|
if (kernel_ondisk == NULL)
|
||||||
@ -320,14 +326,20 @@ int main(int argc, char** argv)
|
|||||||
config_set_indexed_property(configuration,
|
config_set_indexed_property(configuration,
|
||||||
"title", title,
|
"title", title,
|
||||||
"kernel", kernel_ondisk);
|
"kernel", kernel_ondisk);
|
||||||
|
if (verbose)
|
||||||
|
printf(" kernel %s (%s)\n", kernel_image, kernel_ondisk);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!emile_config_get(config, CONFIG_INITRD, &ramdisk))
|
if (!emile_config_get(config, CONFIG_INITRD, &ramdisk))
|
||||||
{
|
{
|
||||||
if (emile_is_url(ramdisk))
|
if (emile_is_url(ramdisk))
|
||||||
|
{
|
||||||
|
if (verbose)
|
||||||
|
printf(" initrd %s\n", ramdisk);
|
||||||
config_set_indexed_property(configuration,
|
config_set_indexed_property(configuration,
|
||||||
"title", title,
|
"title", title,
|
||||||
"initrd", ramdisk);
|
"initrd", ramdisk);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (ramdisk_ondisk == NULL)
|
if (ramdisk_ondisk == NULL)
|
||||||
@ -335,12 +347,16 @@ int main(int argc, char** argv)
|
|||||||
config_set_indexed_property(configuration,
|
config_set_indexed_property(configuration,
|
||||||
"title", title,
|
"title", title,
|
||||||
"initrd", ramdisk_ondisk);
|
"initrd", ramdisk_ondisk);
|
||||||
|
if (verbose)
|
||||||
|
printf(" initrd %s (%s)\n", ramdisk, ramdisk_ondisk);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!emile_config_get(config, CONFIG_ARGS, &args))
|
if (!emile_config_get(config, CONFIG_ARGS, &args))
|
||||||
config_set_indexed_property(configuration,
|
config_set_indexed_property(configuration,
|
||||||
"title", title,
|
"title", title,
|
||||||
"parameters", args);
|
"parameters", args);
|
||||||
|
if (verbose)
|
||||||
|
printf(" parameters %s\n", args);
|
||||||
} while (!emile_config_read_next(config));
|
} while (!emile_config_read_next(config));
|
||||||
emile_config_close(config);
|
emile_config_close(config);
|
||||||
if (ramdisk_ondisk != NULL)
|
if (ramdisk_ondisk != NULL)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user