mirror of
https://github.com/fspc/gbootroot.git
synced 2025-02-25 01:43:24 -05:00
Time to update.
This commit is contained in:
parent
0a4e5df657
commit
d64bb295d3
@ -3,7 +3,7 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
##
|
##
|
||||||
## BootRoot.pm
|
## BootRoot.pm
|
||||||
## Copyright (C) 2000, 2001 by Jonathan Rosenbaum
|
## Copyright (C) 2000, 2001, 2002 by Jonathan Rosenbaum
|
||||||
## <freesource@users.sourceforge.net>
|
## <freesource@users.sourceforge.net>
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
##
|
##
|
||||||
## Error.pm
|
## Error.pm
|
||||||
## Copyright (C) 2000, 2001 by Jonathan Rosenbaum
|
## Copyright (C) 2000, 2001, 2002 by Jonathan Rosenbaum
|
||||||
## <freesource@users.sourceforge.net>
|
## <freesource@users.sourceforge.net>
|
||||||
##
|
##
|
||||||
## This program is free software; you may redistribute it and/or modify
|
## This program is free software; you may redistribute it and/or modify
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
## Yard.pm combining
|
## Yard.pm combining
|
||||||
## MAKE_ROOT_FS, CHECK_ROOT_FS, and YARD_UTILS.PL by Tom Fawcett
|
## MAKE_ROOT_FS, CHECK_ROOT_FS, and YARD_UTILS.PL by Tom Fawcett
|
||||||
## Copyright (C) 1996,1997,1998 Tom Fawcett (fawcett@croftj.net)
|
## Copyright (C) 1996,1997,1998 Tom Fawcett (fawcett@croftj.net)
|
||||||
## Copyright (C) 2000,2001 Modifications by Jonathan Rosenbaum
|
## Copyright (C) 2000,2001,2002 Modifications by Jonathan Rosenbaum
|
||||||
## <freesource@users.sourceforge.net>
|
## <freesource@users.sourceforge.net>
|
||||||
|
|
||||||
##
|
##
|
||||||
@ -1485,6 +1485,7 @@ sub create_expect_uml {
|
|||||||
while (Gtk->events_pending) { Gtk->main_iteration; }
|
while (Gtk->events_pending) { Gtk->main_iteration; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if ( $fs_type eq "mkcramfs" || $fs_type eq "genromfs" ) {
|
if ( $fs_type eq "mkcramfs" || $fs_type eq "genromfs" ) {
|
||||||
# Will just keep appending _cramfs .. leaving it to the
|
# Will just keep appending _cramfs .. leaving it to the
|
||||||
# user to realize this is happening, that way the user
|
# user to realize this is happening, that way the user
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
###########################################################################
|
###########################################################################
|
||||||
##
|
##
|
||||||
## YardBox.pm
|
## YardBox.pm
|
||||||
## Copyright (C) 2000, 2001 by Jonathan Rosenbaum
|
## Copyright (C) 2000, 2001, 2002 by Jonathan Rosenbaum
|
||||||
## <freesource@users.sourceforge.net>
|
## <freesource@users.sourceforge.net>
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
###########################################################################
|
###########################################################################
|
||||||
##
|
##
|
||||||
## expect_uml
|
## expect_uml
|
||||||
## Copyright (C) 2000, 2001 by Jonathan Rosenbaum
|
## Copyright (C) 2000, 2001, 2002 by Jonathan Rosenbaum
|
||||||
## <freesource@users.sourceforge.net>
|
## <freesource@users.sourceforge.net>
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/perl -w
|
||||||
|
|
||||||
# gBootRoot Copyright (C) 2000, 2001
|
# gBootRoot Copyright (C) 2000, 2001, 2002
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# AUTHOR
|
# AUTHOR
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/perl -w
|
||||||
|
|
||||||
# make_debian Copyright (C) 2001 from gBootRoot
|
# make_debian Copyright (C) 2001, 2002 from gBootRoot
|
||||||
# Lead Developer and Project Coordinator
|
# Lead Developer and Project Coordinator
|
||||||
# Jonathan Rosenbaum <freesource@users.sourceforge.net>
|
# Jonathan Rosenbaum <freesource@users.sourceforge.net>
|
||||||
#
|
#
|
||||||
@ -246,7 +246,7 @@ return $stuff;
|
|||||||
use strict;
|
use strict;
|
||||||
use File::Basename;
|
use File::Basename;
|
||||||
my $rm = "\$";
|
my $rm = "\$";
|
||||||
$main::Id = "# \$Id: make_debian,v 1.60 2001/12/13 05:43:27 freesource Exp $rm";
|
$main::Id = "# \$Id: make_debian,v 1.61 2001/12/14 04:37:29 freesource Exp $rm";
|
||||||
my $sbin = grep(/\/usr\/sbin/,$ENV{'PATH'});
|
my $sbin = grep(/\/usr\/sbin/,$ENV{'PATH'});
|
||||||
if ($sbin == 0) {
|
if ($sbin == 0) {
|
||||||
$ENV{'PATH'} = "/usr/sbin:" . $ENV{'PATH'};
|
$ENV{'PATH'} = "/usr/sbin:" . $ENV{'PATH'};
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
## YARD_CHROOT_TEST
|
## YARD_CHROOT_TEST
|
||||||
## Code from CHECK_ROOT_FS by Tom Fawcett
|
## Code from CHECK_ROOT_FS by Tom Fawcett
|
||||||
## Copyright (C) 1996,1997,1998 Tom Fawcett (fawcett@croftj.net)
|
## Copyright (C) 1996,1997,1998 Tom Fawcett (fawcett@croftj.net)
|
||||||
## Copyright (C) 2000, 2001 Modifications by Jonathan Rosenbaum
|
## Copyright (C) 2000, 2001, 2002 Modifications by Jonathan Rosenbaum
|
||||||
## <freesource@users.sourceforge.net>
|
## <freesource@users.sourceforge.net>
|
||||||
##
|
##
|
||||||
## This program is free software; you may redistribute it and/or modify
|
## This program is free software; you may redistribute it and/or modify
|
||||||
|
Loading…
x
Reference in New Issue
Block a user