123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
-
-
-
-
- $src_dir = "../../src";
-
-
- exec ( "make -C '$src_dir' version 2>&1", $make_output, $status );
- $version = ( $status == 0 && count ( $make_output ) > 1 )
- ? trim ( $make_output[count ( $make_output ) - 2] )
- : "";
-
-
- $webmaster_email = "webmaster@example.com";
-
-
- $top_inc = "top.php";
- $bottom_inc = "bottom.php";
-
-
- $header_title = "ROM-o-matic for iPXE $version";
- $html_tagline = "ROM-o-matic dynamically generates iPXE images";
- $html_title = "ROM-o-matic for iPXE $version";
- $description = "a dynamic iPXE image generator";
-
-
-
-
-
-
-
-
- ?>
|