21 lines
458 B
Bash
Executable File
21 lines
458 B
Bash
Executable File
#!/bin/sh
|
|
version=$1
|
|
auth=$2
|
|
lastRev=$3
|
|
revurl=$4
|
|
flashList=$5
|
|
|
|
date=`date -R|cut -b1-26`
|
|
|
|
echo "" > test_version.html
|
|
|
|
echo -e " <td>\n\
|
|
<p>Version Information</p>\n\
|
|
<p width=\"16%\" align=\"left\">Version: $version-D$lastRev</p>\n \
|
|
<p>Build By: $auth</p>\n \
|
|
<p>Build Date: $date</p>\n \
|
|
</td>\n\
|
|
</tr>\n\
|
|
</table>\n" >> test_version.html
|
|
|
|
mv test_version.html build/romfs/rootfs/usr/www/ -f |