use DBI;
use Osstest;
use Osstest::TestSupport;
+use Osstest::Debian;
tsreadconfig();
END
}
+sub overlay ($$) {
+ my ($srcdir, $tfilename) = @_;
+
+ my $fh = IO::File::new_tmpfile() or die $!;
+ contents_make_cpio($fh,'ustar',$srcdir);
+ seek $fh,0,0 or die "$!";
+ target_cmd_inputfh_root($ho, $fh, <<END);
+ tar -C $mountpoint -xf -
+END
+}
+
our $extra;
sub console () {
ether();
target_kernkind_check($gho);
access();
+debian_overlays(\&overlay);
console();
filesystems();
otherfixupcfg();