2 $lGenDate = date("Y-m-d H:i");
13 $ACESSDIR = getenv("ACESSDIR");
14 $ARCH = getenv("ARCH");
16 $gInputFile = $argv[1];
17 $gOutputFile = $argv[2];
18 $gOutputLDOptsFile = $argv[3];
19 $gDepFile = ($argc > 4 ? $argv[4] : false);
21 $gDependencies = array();
23 $lines = file($argv[1]);
27 $lStack = array( array("",array()) );
28 foreach($lines as $line)
31 if($line[0] == "#") continue;
33 if(preg_match('/^Dir\s+"([^"]+)"\s+{$/', $line, $matches))
35 $new = array($matches[1], array());
36 array_push($lStack, $new);
44 $lStack[$lDepth][1][] = array_pop($lStack);
48 if(preg_match('/^File\s+"([^"]+)"\s+"([^"]+)"$/', $line, $matches))
50 $lStack[$lDepth][1][] = array($matches[1], $matches[2]);
53 echo "ERROR: $line\n";
59 //return "0x".str_pad( dechex(ord(fgetc($fp))), 8, "0", STR_PAD_LEFT );
60 $val = unpack("I", fread($fp, 4));
61 //print_r($val); exit -1;
62 return "0x".dechex($val[1]);
67 return "0x".str_pad( dechex(ord(fgetc($fp))), 2, "0", STR_PAD_LEFT );
72 function ProcessFolder($prefix, $items)
74 global $gOutput, $gDependencies;
75 global $ACESSDIR, $ARCH;
78 foreach($items as $i=>$item)
81 if(is_array($item[1]))
83 ProcessFolder("{$prefix}_{$i}", $item[1]);
85 $gOutput .= "tInitRD_File {$prefix}_{$i}_entries[] = {\n";
86 foreach($item[1] as $j=>$child)
88 if($j) $gOutput .= ",\n";
89 $gOutput .= "\t{\"".addslashes($child[0])."\",&{$prefix}_{$i}_{$j}}";
93 $size = count($item[1]);
95 tVFS_Node {$prefix}_{$i} = {
97 .ACLs = &gVFS_ACL_EveryoneRX,
98 .Flags = VFS_FFLAG_DIRECTORY,
101 .ImplPtr = {$prefix}_{$i}_entries,
102 .Type = &gInitRD_DirType
111 // Parse path components
112 $path = str_replace("__BIN__", "$ACESSDIR/Usermode/Output/$ARCH", $path);
113 $path = str_replace("__FS__", "$ACESSDIR/Usermode/Filesystem", $path);
114 $path = str_replace("__SRC__", "$ACESSDIR", $path);
118 $gDependencies[] = $path;
120 if(!file_exists($path)) {
121 echo "ERROR: '{$path}' does not exist\n",
124 $size = filesize($path);
127 $_sym = $prefix."_".$i."_data";
128 $fp = fopen($path, "rb");
130 $gOutput .= "Uint8 $_sym[] = {\n";
131 for( $j = 0; $j + 16 < $size; $j += 16 ) {
133 $gOutput .= hd8($fp).",".hd8($fp).",";
134 $gOutput .= hd8($fp).",".hd8($fp).",";
135 $gOutput .= hd8($fp).",".hd8($fp).",";
136 $gOutput .= hd8($fp).",".hd8($fp).",";
137 $gOutput .= hd8($fp).",".hd8($fp).",";
138 $gOutput .= hd8($fp).",".hd8($fp).",";
139 $gOutput .= hd8($fp).",".hd8($fp).",";
140 $gOutput .= hd8($fp).",".hd8($fp).",\n";
143 for( ; $j < $size; $j ++ ) {
144 if( $j & 15 ) $gOutput .= ",";
145 $gOutput .= hd8($fp);
148 $gOutput .= "\n};\n";
152 $_sym = "_binary_".str_replace(array("/","-","."), "_", $path)."_start";
153 $gOutput .= "extern Uint8 {$_sym}[];";
154 $gSymFiles[] = $path;
157 tVFS_Node {$prefix}_{$i} = {
159 .ACLs = &gVFS_ACL_EveryoneRX,
164 .Type = &gInitRD_FileType
175 ProcessFolder("gInitRD_Files", $lStack[0][1]);
177 $gOutput .= "tInitRD_File gInitRD_Root_Files[] = {\n";
178 foreach($lStack[0][1] as $j=>$child)
180 if($j) $gOutput .= ",\n";
181 $gOutput .= "\t{\"".addslashes($child[0])."\",&gInitRD_Files_{$j}}";
183 $gOutput .= "\n};\n";
184 $nRootFiles = count($lStack[0][1]);
186 tVFS_Node gInitRD_RootNode = {
188 .ACLs = &gVFS_ACL_EveryoneRX,
189 .Flags = VFS_FFLAG_DIRECTORY,
191 .ImplPtr = gInitRD_Root_Files,
192 .Type = &gInitRD_DirType
198 tVFS_Node * const gInitRD_FileList[] = {
202 function PutNodePointers($prefix, $items)
205 foreach($items as $i=>$item)
207 $gOutput .= ",&{$prefix}_{$i}";
208 if(is_array($item[1]))
210 PutNodePointers("{$prefix}_{$i}", $item[1]);
215 PutNodePointers("gInitRD_Files", $lStack[0][1]);
219 const int giInitRD_NumFiles = sizeof(gInitRD_FileList)/sizeof(gInitRD_FileList[0]);
224 $fp = fopen($gOutputFile, "w");
225 fputs($fp, $gOutput);
228 // - Create options call
229 $fp = fopen($gOutputLDOptsFile, "w");
230 fputs($fp, "--format binary\n");
231 foreach($gSymFiles as $sym=>$file)
233 fputs($fp, "$file\n");
234 // fputs($fp, "--defsym $sym=_binary_".$sym_filename."_start\n");
238 if($gDepFile !== false)
240 $fp = fopen($gDepFile, "w");
241 $line = $gOutputFile.":\t".implode(" ", $gDependencies);