2004-02-12 01:13:47 +00:00
|
|
|
<?php
|
|
|
|
require_once("docutil.php");
|
|
|
|
page_head("Upgrading project software");
|
|
|
|
|
|
|
|
echo "
|
|
|
|
The script <b>bin/upgrade</b> copies files from
|
2004-05-03 02:18:35 +00:00
|
|
|
a BOINC source tree to a project tree.
|
2004-02-12 01:13:47 +00:00
|
|
|
This is typically done after updating the source tree
|
|
|
|
and recompiling the software.
|
2004-05-03 02:18:35 +00:00
|
|
|
The script must reside in the project's bin/ directory,
|
|
|
|
and you must run it from the source tree root.
|
2004-02-12 01:13:47 +00:00
|
|
|
<p>
|
|
|
|
<b>upgrade</b> does the following:
|
|
|
|
<ul>
|
2004-03-02 03:46:04 +00:00
|
|
|
<li>
|
2004-02-12 01:13:47 +00:00
|
|
|
It copies files from the source/html/* directories
|
|
|
|
to the corresponding project directories.
|
|
|
|
<li>
|
|
|
|
It copies source/sched/cgi and source/sched/file_upload_handler
|
|
|
|
to projects/cgi-bin.
|
|
|
|
<li>
|
2004-05-03 02:18:35 +00:00
|
|
|
It copies other programs in source/sched to project/bin.
|
2004-02-12 01:13:47 +00:00
|
|
|
<li>
|
|
|
|
It copies programs in source/tools to project/bin.
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|
|
|
|
|