root/current/emdebian/trunk/buildcross/branch/em_wrap.sh

Revision 2464, 3.3 kB (checked in by zumbi, 14 months ago)

fix images log html

  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3# em_web.sh merge
4
5source conf_vars.sh
6
7# Update system
8${ROOTCMD} apt-get -f -y --force-yes install
9${ROOTCMD} apt-get update
10${ROOTCMD} apt-get -y --force-yes dist-upgrade
11
12
13
14cat << 'EOF' > $LOGHTMLPATH/$LOGHTML
15<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
16<html lang="en">
17<head>
18  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
19<title>Buildcross results: Emdebian vs Debian (unstable)</title>  <link rev="made" href="mailto:webmaster\@emdebian.org">
20  <link rel="shortcut icon" href="http://www.emdebian.org/favicon.ico">
21</head>
22<body text="#000000" bgcolor="#FFFFFF" link="#0000FF" vlink="#800080" alink="#FF0000">
23<table width="100%" align="center" border="0" cellpadding="3" cellspacing="0" summary="">
24<tr>
25  <td align="left" valign="middle">
26  <a href="http://www.emdebian.org/"><img src="http://www.emdebian.org/Pics/emdebian_swirl.jpg" border="0" hspace="0" 
27  vspace="0" alt="emdebian logo" width="310" height="61"></a>
28  </td>
29</tr>
30</table>
31<table bgcolor="#DF0451" border="0" cellpadding="0" cellspacing="0" width="100%" summary="">
32<tr>
33<td valign="top">
34<img src="http://www.emdebian.org/Pics/red-upperleft.png" align="left" border="0" hspace="0" vspace="0" 
35alt="" width="15" height="16">
36</td>
37<td rowspan="2" align="center">
38<a href="http://www.emdebian.org/News/index.html"><img src="http://www.emdebian.org/Pics/news.en.png" align="middle" 
39border="0" hspace="4" vspace="7" alt="news" width="48" height="18"></a>
40<a href="http://www.emdebian.org/projects.html"><img src="http://www.emdebian.org/Pics/projects.en.png" align="middle" 
41border="0" hspace="4" vspace="7" alt="emdebian projects" width="62" height="18"></a>
42<a href="http://www.emdebian.org/support.html"><img src="http://www.emdebian.org/Pics/support.en.png" align="middle" 
43border="0" hspace="4" vspace="7" alt="support" width="62" height="18"></a>
44<a href="http://www.emdebian.org/develinfo.html"><img src="http://www.emdebian.org/Pics/devel.en.png" align="middle" 
45border="0" hspace="4" vspace="7" alt="development" width="89" height="18"></a>
46<td valign="top">
47<img src="http://www.emdebian.org/Pics/red-upperright.png" align="right" border="0" hspace="0" vspace="0" 
48alt="" width="16" height="16">
49</td>
50
51</tr>
52<tr>
53<td valign="bottom">
54<img src="http://www.emdebian.org/Pics/red-lowerleft.png" align="left" border="0" hspace="0" vspace="0" 
55alt="" width="16" height="16">
56</td>
57<td valign="bottom">
58<img src="http://www.emdebian.org/Pics/red-lowerright.png" align="right" border="0" hspace="0" vspace="0" 
59alt="" width="15" height="16">
60</td>
61</tr>
62</table>
63<div><h1>
64Emdebian buildcross toolchain updates: unstable</h1>
65<p>This page is generated automatically by buildcross infrastructure to check latest status in
66Emdebian toolchain <b>unstable</b> repository against upstream Debian unstable.</p>
67<table border="1"><colgroup><col width="30%"><col width="10%">
68<col width="30%"></colgroup>
69<br>
70<p>You can check <a href="./logs/build.log">buildcross complete log</a></p>
71<b>BUILD-HOST : ARCH : SUITE : PKG : LOGFILE : STATUS</b> <br>
72EOF
73
74for ARCH in $ARCHLIST; do
75        # Do PKGLIST
76        for PKG in $PKGLIST; do
77                # Check if it is already latest version built
78
79                # Builds certain PKG for certain ARCH
80                ./em_build.sh $PKG $ARCH
81
82                # Anything else to do?
83        done
84               
85        # Anything else to do?
86done
87
88cat << 'EOF' >> $LOGHTMLPATH/$LOGHTML
89</table>
90</body></html>
91EOF
Note: See TracBrowser for help on using the browser.