summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--boot-conf.in1
-rw-r--r--boot.pl.in5
2 files changed, 6 insertions, 0 deletions
diff --git a/boot-conf.in b/boot-conf.in
index 38a6f53..f185010 100644
--- a/boot-conf.in
+++ b/boot-conf.in
@@ -155,6 +155,7 @@ sub xml_print_global_kws
while ($i = shift @tags)
{
+ print "$i\n";
&xst_xml_print_line ("<$i/>\n") if exists $$h{$i};
}
}
diff --git a/boot.pl.in b/boot.pl.in
index cb573b5..b4dae94 100644
--- a/boot.pl.in
+++ b/boot.pl.in
@@ -62,13 +62,18 @@ sub xst_boot_parse_global
my ($fd, @line, $re);
$re = "[ \t]*=[ \t]*";
+ print "$file\n";
$fd = &xst_file_open_read_from_names ($file);
while (($line = <$fd>))
{
+ print "1-$line\n";
chomp $line;
+ print "1-$line\n";
$line =~ s/^[ \t]+//;
+ print "1-$line\n";
$line = &xst_parse_process_sh_line ($line);
+ print "1-$line\n";
next if ($line eq "");
last if ($line =~ /^(image|other)/);