Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


updates to the PCI configuration for the southbridge and northbridge
[palacios.git] / geekos / scripts / mkcdisk
1 #! /usr/bin/perl
2
3 # Build a binary image containing a pseudo fat filesystem with the listed files
4
5 # $Revision: 1.1 $
6 use FileHandle; 
7
8 if ( scalar(@ARGV) < 2 ) {
9     print STDERR "usage: mkuprog <diskImage> <filenames>\n";
10     exit 1;
11 }
12
13
14 $filename = shift @ARGV;
15 $filecount = scalar ( @ARGV );
16
17 $fh = new FileHandle(">$filename");
18
19 write
20
21 while (scalar(@ARGV)) {
22     $filename = shift @ARGV;
23
24     print  "got file ", $filename, "\n";
25 }