diff options
39 files changed, 2124 insertions, 574 deletions
diff --git a/classes/seppuku.bbclass b/classes/seppuku.bbclass index 8d5e234c49..4c0d4f9a82 100644 --- a/classes/seppuku.bbclass +++ b/classes/seppuku.bbclass @@ -15,6 +15,8 @@ def seppuku_spliturl(url): param = {} for par in query.split("&"): (key,value) = urllib.splitvalue(par) + if not key or len(key) == 0 or not value: + continue key = urllib.unquote(key) value = urllib.unquote(value) param[key] = value @@ -65,10 +67,13 @@ def seppuku_find_bug_report_old(): HTMLParser.__init__(self) self.state = self.STATE_NONE self.bugs = [] + self.bug = None def handle_starttag(self, tag, attr): if self.state == self.STATE_NONE and tag.lower() == "tr": - if len(attr) == 1 and attr[0] == ('class', 'bz_normal bz_P2 '): + if len(attr) == 1 and attr[0][0] == 'class' and \ + ('bz_normal' in attr[0][1] or 'bz_blocker' in attr[0][1] or 'bz_enhancement' in attr[0][1] or 'bz_major' in attr[0][1] or 'bz_minor' in attr[0][1] or 'bz_trivial' in attr[0][1] or 'bz_critical' in attr[0][1] or 'bz_wishlist' in attr[0][1]) \ + and 'bz_P' in attr[0][1]: self.state = self.STATE_FOUND_TR elif self.state == self.STATE_FOUND_TR and tag.lower() == "td": self.state += 1 @@ -78,6 +83,7 @@ def seppuku_find_bug_report_old(): if self.state != self.STATE_NONE: self.bugs.append( (self.bug,self.status) ) self.state = self.STATE_NONE + self.bug = None if self.state > 1 and tag.lower() == "td": self.state += 1 @@ -89,7 +95,11 @@ def seppuku_find_bug_report_old(): return if self.state == self.STATE_FOUND_NUMBER: - self.bug = data + """ + #1995 in bugs.oe.org has [SEC] additionally to the number and we want to ignore it + """ + if not self.bug: + self.bug = data elif self.state == self.STATE_FOUND_STATUS: self.status = data @@ -281,6 +291,7 @@ python seppuku_eventhandler() { else: print "Logged into the box" + file = None if name == "TaskFailed": bugname = "%(package)s-%(pv)s-%(pr)s-%(task)s" % { "package" : bb.data.getVar("PN", data, True), "pv" : bb.data.getVar("PV", data, True), @@ -288,11 +299,11 @@ python seppuku_eventhandler() { "task" : e.task } log_file = glob.glob("%s/log.%s.*" % (bb.data.getVar('T', event.data, True), event.task)) text = "The package failed to build at %s" % bb.data.getVar('DATETIME', data, True) - file = open(log_file[0], 'r') + if len(log_file) != 0: + file = open(log_file[0], 'r') elif name == "NoProvider": bugname = "noprovider for %s runtime: %s" % (event.getItem, event.getisRuntime) text = "Please fix it" - file = None else: assert False diff --git a/conf/distro/foonas.conf b/conf/distro/foonas.conf index bd2a0e4e5e..b0f47c6dc0 100644 --- a/conf/distro/foonas.conf +++ b/conf/distro/foonas.conf @@ -30,10 +30,12 @@ IMAGE_FSTYPES = "jffs2" PREFERRED_PROVIDER_virtual/${TARGET_PREFIX}libc-for-gcc = "glibc-intermediate" PREFERRED_PROVIDER_virtual/arm-foonas-linux-gnueabi-libc-for-gcc = "glibc-intermediate" -#PREFERRED_PROVIDER_virtual/armeb-foonas-linux-gnueabi-libc-for-gcc = "glibc-intermediate" PREFERRED_PROVIDER_virtual/arm-linux-libc-for-gcc = "glibc-intermediate" -#PREFERRED_PROVIDER_virtual/armeb-linux-libc-for-gcc = "glibc-intermediate" PREFERRED_PROVIDER_virtual/powerpc-foonas-linux-libc-for-gcc = "glibc-intermediate" + +# not used yet +#PREFERRED_PROVIDER_virtual/armeb-linux-libc-for-gcc = "glibc-intermediate" +#PREFERRED_PROVIDER_virtual/armeb-foonas-linux-gnueabi-libc-for-gcc = "glibc-intermediate" #PREFERRED_PROVIDER_virtual/mipsel-foonas-linux-libc-for-gcc = "glibc-intermediate" #PREFERRED_PROVIDER_virtual/sparc-foonas-linux-libc-for-gcc = "glibc-intermediate" @@ -83,7 +85,6 @@ PREFERRED_VERSION_glibc-intermediate = "2.5" PREFERRED_VERSION_glibc-initial = "2.5" GLIBC_EXTRA_OECONF = "--with-tls" -PREFERRED_VERSION_glib-2.0 = "2.12.10" PREFERRED_VERSION_linux-libc-headers ?= "2.6.18" GLIBC_ADDONS ?= "ports,nptl,libidn" diff --git a/conf/machine/n2100.conf b/conf/machine/n2100.conf index 619b0f4339..554157ca85 100644 --- a/conf/machine/n2100.conf +++ b/conf/machine/n2100.conf @@ -3,7 +3,6 @@ TARGET_OS = "linux" TARGET_FPU = "soft" PACKAGE_EXTRA_ARCHS = "armv4 armv4t armv5e armv5te" -# terminal specs - console, but no other ports SERIAL_CONSOLE="115200 console" USE_VT="0" @@ -13,15 +12,15 @@ PREFERRED_PROVIDER_virtual/kernel = "linux" PREFERRED_VERSION_linux = "2.6.20" # Do we need any kernel modules? -#N2100_KERNEL = "" +FOONAS_KERNEL = "kernel-module-ext2 kernel-module-usb-storage" + +FOONAS_SUPPORT += "fis" # We want udev support in the image udevdir = "/dev" -N2100_SUPPORT ?= "cpio udev" BOOTSTRAP_EXTRA_RDEPENDS = "udev mdadm" -EXTRA_IMAGECMD_jffs2 += " --little-endian" -# Hardware stuff used in image generation +EXTRA_IMAGECMD_jffs2 += " --little-endian" ERASEBLOCK_SIZE = "0x20000" JFFS2_ROOTFS_SIZE = "0xC80000" KERNEL_IMAGE_SIZE = "0x280000" diff --git a/conf/machine/turbostation.conf b/conf/machine/turbostation.conf index 7f7d24c1e9..41dfd8d09e 100644 --- a/conf/machine/turbostation.conf +++ b/conf/machine/turbostation.conf @@ -11,16 +11,16 @@ USE_VT="0" MODUTILS=26 MACHINE_FEATURES= "kernel26 usbhost" PREFERRED_PROVIDER_virtual/kernel = "linux-turbostation" - -# Do we need any kernel modules? -OPENTURBOSTATION_KERNEL = "" +FOONAS_KERNEL = "kernel-module-ext3 kernel-module-minix \ + kernel-module-usb-storage" # We want udev support in the image udevdir = "/dev" -TURBOSTATION_SUPPORT ?= "cpio uboot-utils udev" BOOTSTRAP_EXTRA_RDEPENDS = "udev mdadm" +FOONAS_SUPPORT += "uboot-utils" # Hardware stuff used in image generation +EXTRA_IMAGECMD = "--big-endian" ERASEBLOCK_SIZE = "0x20000" JFFS2_ROOTFS_SIZE = "0xC80000" KERNEL_IMAGE_SIZE = "0x280000" diff --git a/contrib/qa/bugzilla.py b/contrib/qa/bugzilla.py index 1bc0ce9949..17849552b0 100644 --- a/contrib/qa/bugzilla.py +++ b/contrib/qa/bugzilla.py @@ -25,11 +25,16 @@ class BugQueryExtractor(HTMLParser): def __init__(self): HTMLParser.__init__(self) self.state = self.STATE_NONE + self.bug = None self.bugs = [] def handle_starttag(self, tag, attr): if self.state == self.STATE_NONE and tag.lower() == "tr": - if len(attr) == 1 and attr[0] == ('class', 'bz_normal bz_P2 '): + # check for bz_normal and bz_P2 as indicator in buglist.cgi + # use 'all' and 'map' on python2.5 + if len(attr) == 1 and attr[0][0] == 'class' and \ + ('bz_normal' in attr[0][1] or 'bz_blocker' in attr[0][1] or 'bz_enhancement' in attr[0][1] or 'bz_major' in attr[0][1] or 'bz_minor' in attr[0][1] or 'bz_trivial' in attr[0][1] or 'bz_critical' in attr[0][1] or 'bz_wishlist' in attr[0][1]) \ + and 'bz_P' in attr[0][1]: print "Found tr %s %s" % (tag, attr) self.state = self.STATE_FOUND_TR elif self.state == self.STATE_FOUND_TR and tag.lower() == "td": @@ -41,6 +46,7 @@ class BugQueryExtractor(HTMLParser): if self.state != self.STATE_NONE: self.bugs.append( (self.bug,self.status) ) self.state = self.STATE_NONE + self.bug = None if self.state > 1 and tag.lower() == "td": print "Next TD" self.state += 1 @@ -51,11 +57,17 @@ class BugQueryExtractor(HTMLParser): # skip garbage if len(data) == 0: return - + if self.state == self.STATE_FOUND_NUMBER: + """ + #1995 in bugs.oe.org has [SEC] additionally to the number and we want to ignore it + """ print "Bug Number '%s'" % data.strip() + if self.bug: + print "Ignoring bug data" + return self.bug = data - + elif self.state == self.STATE_FOUND_STATUS: print "Status Name '%s'" % data.strip() self.status = data @@ -65,267 +77,7 @@ class BugQueryExtractor(HTMLParser): return self.bugs # -site = """<!-- 1.0@bugzilla.org --> - - - - - - - - - - - -<!-- 1.0@bugzilla.org --> - - - - -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<html> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> - <title>Bug List</title> - - - - - - <link href="/style/style.css" rel="stylesheet" type="text/css" /> - - <link href="/bugzilla/css/buglist.css" rel="stylesheet" type="text/css"> - - </head> - - - - <body bgcolor="#FFFFFF" onload=""> - - -<!-- 1.0@bugzilla.org --> - - - - - <div id="header"> - <a href="http://bugzilla.openmoko.org/cgi-bin/bugzilla/" id="site_logo"><img src="/style/images/openmoko_logo.png" alt="openmoko.org" /></a> - - <div id="main_navigation"> - <ul> - <li><a href="http://www.openmoko.org/" class="nav_home"><span>Home</span></a></li> - <li><a href="http://wiki.openmoko.org/" class="nav_wiki"><span>Wiki</span></a></li> - <li><a href="http://bugzilla.openmoko.org/" class="nav_bugzilla selected"><span>Bugzilla</span></a></li> - <li><a href="http://planet.openmoko.org/" class="nav_planet"><span>Planet</span></a></li> - <li><a href="http://projects.openmoko.org/" class="nav_projects"><span>Projects</span></a></li> - <li><a href="http://lists.openmoko.org/" class="nav_lists"><span>Lists</span></a></li> - </ul> - </div> - </div> - - <div class="page_title"> - <strong>Bug List</strong> - </div> - - <div class="container"> - -<div align="center"> - <b>Tue Mar 6 19:01:13 CET 2007</b><br> - - - <a href="quips.cgi"><i>Free your problems -</i></a> - -</div> - - -<hr> - - - - - - - - - - - - - - - - - -<!-- 1.0@bugzilla.org --> - - - - - - - - - - - - - - - - - - - - - - - <table class="bz_buglist" cellspacing="0" cellpadding="4" width="100%"> - <colgroup> - <col class="bz_id_column"> - <col class="bz_severity_column"> - <col class="bz_priority_column"> - <col class="bz_platform_column"> - <col class="bz_owner_column"> - <col class="bz_status_column"> - <col class="bz_resolution_column"> - <col class="bz_summary_column"> - </colgroup> - - <tr align="left"> - <th colspan="1"> - <a href="buglist.cgi?short_desc_type=substring&short_desc=manual+test+bug&product=OpenMoko&component=autobuilds&order=bugs.bug_id">ID</a> - </th> - -<th colspan="1"> - <a href="buglist.cgi?short_desc_type=substring&short_desc=manual+test+bug&product=OpenMoko&component=autobuilds&order=bugs.bug_severity,bugs.bug_id">Sev</a> - </th><th colspan="1"> - <a href="buglist.cgi?short_desc_type=substring&short_desc=manual+test+bug&product=OpenMoko&component=autobuilds&order=bugs.priority,bugs.bug_id">Pri</a> - </th><th colspan="1"> - <a href="buglist.cgi?short_desc_type=substring&short_desc=manual+test+bug&product=OpenMoko&component=autobuilds&order=bugs.rep_platform,bugs.bug_id">Plt</a> - </th><th colspan="1"> - <a href="buglist.cgi?short_desc_type=substring&short_desc=manual+test+bug&product=OpenMoko&component=autobuilds&order=map_assigned_to.login_name,bugs.bug_id">Owner</a> - </th><th colspan="1"> - <a href="buglist.cgi?short_desc_type=substring&short_desc=manual+test+bug&product=OpenMoko&component=autobuilds&order=bugs.bug_status,bugs.bug_id">State</a> - </th><th colspan="1"> - <a href="buglist.cgi?short_desc_type=substring&short_desc=manual+test+bug&product=OpenMoko&component=autobuilds&order=bugs.resolution,bugs.bug_id">Result</a> - </th><th colspan="1"> - <a href="buglist.cgi?short_desc_type=substring&short_desc=manual+test+bug&product=OpenMoko&component=autobuilds&order=bugs.short_desc,bugs.bug_id">Summary</a> - </th> - - - </tr> - - <tr class="bz_normal bz_P2 "> - - <td> - <a href="show_bug.cgi?id=238">238</a> - </td> - - <td><nobr>nor</nobr> - </td> - <td><nobr>P2</nobr> - </td> - <td><nobr>Mac</nobr> - </td> - <td><nobr>mickey@vanille-media.de</nobr> - </td> - <td><nobr>NEW</nobr> - </td> - <td><nobr></nobr> - </td> - <td>manual test bug - </td> - - </tr> - - - </table> - - - - - - One bug found. - - -<br> - - - - - - - - - - - - - <form method="post" action="long_list.cgi"> - <input type="hidden" name="buglist" value="238"> - <input type="submit" value="Long Format"> - - <a href="query.cgi">Query Page</a> - <a href="enter_bug.cgi">Enter New Bug</a> - <a href="colchange.cgi?short_desc_type=substring&short_desc=manual+test+bug&product=OpenMoko&component=autobuilds">Change Columns</a> - - - - <a href="query.cgi?short_desc_type=substring&short_desc=manual+test+bug&product=OpenMoko&component=autobuilds">Edit this Query</a> - - </form> - - - - - - -<!-- 1.0@bugzilla.org --> - - - - - - -</div> - -<div class="footer"> - <div class="group">This is <b>Bugzilla</b>: the Mozilla bug system. For more information about what Bugzilla is and what it can do, see <a href="http://www.bugzilla.org/">bugzilla.org</a>.</div> - <!-- 1.0@bugzilla.org --> - - - - - - -<form method="get" action="show_bug.cgi"> - <div class="group"> - <a href="enter_bug.cgi">New</a> | <a href="query.cgi">Query</a> | <input type="submit" value="Find"> bug # <input name="id" size="6"> | <a href="reports.cgi">Reports</a> | <a href="votes.cgi?action=show_user">My Votes</a> - </div> - - <div class="group"> - Edit <a href="userprefs.cgi">prefs</a> - | <a href="relogin.cgi">Log out</a> freyther@yahoo.com - </div> - - - - - <div class="group"> - Preset Queries: - - <a href="buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=freyther%40yahoo.com&emailtype1=exact&emailassigned_to1=1&emailreporter1=1">My Bugs</a> - - </div> -</form> -</div> - -</body> -</html> -""" - -all_bugs = """<!-- 1.0@bugzilla.org --> +bugs_openmoko = """<!-- 1.0@bugzilla.org --> @@ -390,10 +142,10 @@ all_bugs = """<!-- 1.0@bugzilla.org --> <div class="container"> <div align="center"> - <b>Tue Mar 6 20:23:16 CET 2007</b><br> + <b>Fri Mar 16 20:51:52 CET 2007</b><br> - <a href="quips.cgi"><i>Free your problems + <a href="quips.cgi"><i>It was a time of great struggle and heroic deeds </i></a> </div> @@ -405,7 +157,7 @@ all_bugs = """<!-- 1.0@bugzilla.org --> -228 bugs found. +282 bugs found. @@ -454,23 +206,23 @@ all_bugs = """<!-- 1.0@bugzilla.org --> <tr align="left"> <th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.bug_id">ID</a> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.bug_id">ID</a> </th> <th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.bug_severity,bugs.bug_id">Sev</a> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.bug_severity,bugs.bug_id">Sev</a> </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.priority,bugs.bug_id">Pri</a> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.priority,bugs.bug_id">Pri</a> </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.rep_platform,bugs.bug_id">Plt</a> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.rep_platform,bugs.bug_id">Plt</a> </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=map_assigned_to.login_name,bugs.bug_id">Owner</a> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=map_assigned_to.login_name,bugs.bug_id">Owner</a> </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.bug_status,bugs.bug_id">State</a> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.bug_status,bugs.bug_id">State</a> </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.resolution,bugs.bug_id">Result</a> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.resolution,bugs.bug_id">Result</a> </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.short_desc,bugs.bug_id">Summary</a> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.short_desc,bugs.bug_id">Summary</a> </th> @@ -535,6 +287,34 @@ all_bugs = """<!-- 1.0@bugzilla.org --> <tr class="bz_normal bz_P2 "> <td> + <a href="show_bug.cgi?id=3">3</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>sean_chiang@fic.com.tw</nobr> + </td> + <td><nobr>CLOS</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>Debug Board trying to control GSM_EN / FA_19 + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> <a href="show_bug.cgi?id=4">4</a> </td> @@ -546,9 +326,9 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>laforge@openmoko.org</nobr> </td> - <td><nobr>ASSI</nobr> + <td><nobr>RESO</nobr> </td> - <td><nobr></nobr> + <td><nobr>FIXE</nobr> </td> <td>random crashes of gsmd </td> @@ -591,6 +371,34 @@ all_bugs = """<!-- 1.0@bugzilla.org --> <tr class="bz_normal bz_P2 "> <td> + <a href="show_bug.cgi?id=6">6</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>sean_chiang@fic.com.tw</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>GSM_EN should be called nGSM_EN + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> <a href="show_bug.cgi?id=7">7</a> </td> @@ -840,6 +648,62 @@ all_bugs = """<!-- 1.0@bugzilla.org --> + <tr class="bz_blocker bz_P2 "> + + <td> + <a href="show_bug.cgi?id=16">16</a> + </td> + + <td><nobr>blo</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>sean_chiang@fic.com.tw</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>bluetooth pullup / pulldown resistors + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=17">17</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>sean_chiang@fic.com.tw</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>microSD socket still has mechanical contact problems + </td> + + </tr> + + + + + + <tr class="bz_normal bz_P2 "> <td> @@ -1274,9 +1138,9 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>laforge@openmoko.org</nobr> </td> - <td><nobr>ASSI</nobr> + <td><nobr>RESO</nobr> </td> - <td><nobr></nobr> + <td><nobr>FIXE</nobr> </td> <td>incoming call status report causes gsmd to crash. </td> @@ -1302,9 +1166,9 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>laforge@openmoko.org</nobr> </td> - <td><nobr>ASSI</nobr> + <td><nobr>RESO</nobr> </td> - <td><nobr></nobr> + <td><nobr>WORK</nobr> </td> <td>Need to decide if lgsm_handle is still valid. </td> @@ -2786,9 +2650,9 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>laforge@openmoko.org</nobr> </td> - <td><nobr>NEW</nobr> + <td><nobr>RESO</nobr> </td> - <td><nobr></nobr> + <td><nobr>FIXE</nobr> </td> <td>define and implement how headphone jack routing/signallin... </td> @@ -3160,9 +3024,45 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </tr> + </table> + <table class="bz_buglist" cellspacing="0" cellpadding="4" width="100%"> + <colgroup> + <col class="bz_id_column"> + <col class="bz_severity_column"> + <col class="bz_priority_column"> + <col class="bz_platform_column"> + <col class="bz_owner_column"> + <col class="bz_status_column"> + <col class="bz_resolution_column"> + <col class="bz_summary_column"> + </colgroup> + + <tr align="left"> + <th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.bug_id">ID</a> + </th> + +<th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.bug_severity,bugs.bug_id">Sev</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.priority,bugs.bug_id">Pri</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.rep_platform,bugs.bug_id">Plt</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=map_assigned_to.login_name,bugs.bug_id">Owner</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.bug_status,bugs.bug_id">State</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.resolution,bugs.bug_id">Result</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.short_desc,bugs.bug_id">Summary</a> + </th> + + + </tr> <tr class="bz_major bz_P2 "> @@ -3272,45 +3172,9 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </tr> - </table> - <table class="bz_buglist" cellspacing="0" cellpadding="4" width="100%"> - <colgroup> - <col class="bz_id_column"> - <col class="bz_severity_column"> - <col class="bz_priority_column"> - <col class="bz_platform_column"> - <col class="bz_owner_column"> - <col class="bz_status_column"> - <col class="bz_resolution_column"> - <col class="bz_summary_column"> - </colgroup> - - <tr align="left"> - <th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.bug_id">ID</a> - </th> - -<th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.bug_severity,bugs.bug_id">Sev</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.priority,bugs.bug_id">Pri</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.rep_platform,bugs.bug_id">Plt</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=map_assigned_to.login_name,bugs.bug_id">Owner</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.bug_status,bugs.bug_id">State</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.resolution,bugs.bug_id">Result</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.short_desc,bugs.bug_id">Summary</a> - </th> - - - </tr> <tr class="bz_enhancement bz_P2 "> @@ -4304,7 +4168,7 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>Neo</nobr> </td> - <td><nobr>mickey@vanille-media.de</nobr> + <td><nobr>stefan@openmoko.org</nobr> </td> <td><nobr>NEW</nobr> </td> @@ -4698,9 +4562,9 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>sunzhiyong@fic-sh.com.cn</nobr> </td> - <td><nobr>ASSI</nobr> + <td><nobr>RESO</nobr> </td> - <td><nobr></nobr> + <td><nobr>FIXE</nobr> </td> <td>mainmenu crashes when clicking wheel the 2nd time </td> @@ -5723,6 +5587,34 @@ all_bugs = """<!-- 1.0@bugzilla.org --> <tr class="bz_enhancement bz_P2 "> <td> + <a href="show_bug.cgi?id=191">191</a> + </td> + + <td><nobr>enh</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>sean_chiang@fic.com.tw</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>investigate if we can set CPU voltage to 1.8V on 200MHz o... + </td> + + </tr> + + + + + + + <tr class="bz_enhancement bz_P2 "> + + <td> <a href="show_bug.cgi?id=192">192</a> </td> @@ -5748,6 +5640,34 @@ all_bugs = """<!-- 1.0@bugzilla.org --> + <tr class="bz_enhancement bz_P3 "> + + <td> + <a href="show_bug.cgi?id=193">193</a> + </td> + + <td><nobr>enh</nobr> + </td> + <td><nobr>P3</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>sean_chiang@fic.com.tw</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>Information about current charging status when AC is online + </td> + + </tr> + + + + + + <tr class="bz_minor bz_P2 "> <td> @@ -5760,7 +5680,7 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>Neo</nobr> </td> - <td><nobr>laforge@openmoko.org</nobr> + <td><nobr>stefan@openmoko.org</nobr> </td> <td><nobr>NEW</nobr> </td> @@ -5940,9 +5860,45 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </tr> + </table> + <table class="bz_buglist" cellspacing="0" cellpadding="4" width="100%"> + <colgroup> + <col class="bz_id_column"> + <col class="bz_severity_column"> + <col class="bz_priority_column"> + <col class="bz_platform_column"> + <col class="bz_owner_column"> + <col class="bz_status_column"> + <col class="bz_resolution_column"> + <col class="bz_summary_column"> + </colgroup> + + <tr align="left"> + <th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.bug_id">ID</a> + </th> + +<th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.bug_severity,bugs.bug_id">Sev</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.priority,bugs.bug_id">Pri</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.rep_platform,bugs.bug_id">Plt</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=map_assigned_to.login_name,bugs.bug_id">Owner</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.bug_status,bugs.bug_id">State</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.resolution,bugs.bug_id">Result</a> + </th><th colspan="1"> + <a href="buglist.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=&order=bugs.short_desc,bugs.bug_id">Summary</a> + </th> + + + </tr> <tr class="bz_normal bz_P2 "> @@ -6000,6 +5956,62 @@ all_bugs = """<!-- 1.0@bugzilla.org --> + <tr class="bz_major bz_P2 "> + + <td> + <a href="show_bug.cgi?id=203">203</a> + </td> + + <td><nobr>maj</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>All</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>fix the web site: http://openmoko.com/ + </td> + + </tr> + + + + + + + <tr class="bz_minor bz_P2 "> + + <td> + <a href="show_bug.cgi?id=204">204</a> + </td> + + <td><nobr>min</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>All</nobr> + </td> + <td><nobr>buglog@lists.openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>Fatal error in Special:Newimages + </td> + + </tr> + + + + + + <tr class="bz_minor bz_P2 "> <td> @@ -6108,45 +6120,9 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </tr> - </table> - <table class="bz_buglist" cellspacing="0" cellpadding="4" width="100%"> - <colgroup> - <col class="bz_id_column"> - <col class="bz_severity_column"> - <col class="bz_priority_column"> - <col class="bz_platform_column"> - <col class="bz_owner_column"> - <col class="bz_status_column"> - <col class="bz_resolution_column"> - <col class="bz_summary_column"> - </colgroup> - - <tr align="left"> - <th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.bug_id">ID</a> - </th> - -<th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.bug_severity,bugs.bug_id">Sev</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.priority,bugs.bug_id">Pri</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.rep_platform,bugs.bug_id">Plt</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=map_assigned_to.login_name,bugs.bug_id">Owner</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.bug_status,bugs.bug_id">State</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.resolution,bugs.bug_id">Result</a> - </th><th colspan="1"> - <a href="buglist.cgi?product=OpenMoko&order=bugs.short_desc,bugs.bug_id">Summary</a> - </th> - - - </tr> <tr class="bz_normal bz_P2 "> @@ -6235,6 +6211,34 @@ all_bugs = """<!-- 1.0@bugzilla.org --> <tr class="bz_normal bz_P2 "> <td> + <a href="show_bug.cgi?id=212">212</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Oth</nobr> + </td> + <td><nobr>werner@openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>Charging seems completely broken + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> <a href="show_bug.cgi?id=213">213</a> </td> @@ -6302,9 +6306,9 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>mickey@vanille-media.de</nobr> </td> - <td><nobr>NEW</nobr> + <td><nobr>RESO</nobr> </td> - <td><nobr></nobr> + <td><nobr>FIXE</nobr> </td> <td>fingerwheel crashes mainmenu when touching the black part </td> @@ -6694,9 +6698,9 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>davewu01@seed.net.tw</nobr> </td> - <td><nobr>ASSI</nobr> + <td><nobr>RESO</nobr> </td> - <td><nobr></nobr> + <td><nobr>FIXE</nobr> </td> <td>outgoing call/incoming call/talking status should be more... </td> @@ -6764,6 +6768,34 @@ all_bugs = """<!-- 1.0@bugzilla.org --> + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=232">232</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Oth</nobr> + </td> + <td><nobr>buglog@lists.openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>n-plicate buglog mails + </td> + + </tr> + + + + + + <tr class="bz_critical bz_P2 "> <td> @@ -6778,9 +6810,9 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>werner@openmoko.org</nobr> </td> - <td><nobr>NEW</nobr> + <td><nobr>RESO</nobr> </td> - <td><nobr></nobr> + <td><nobr>FIXE</nobr> </td> <td>power-off timer should be halted in DFU mode </td> @@ -6832,11 +6864,11 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>PC</nobr> </td> - <td><nobr>mickey@vanille-media.de</nobr> + <td><nobr>laforge@openmoko.org</nobr> </td> - <td><nobr>NEW</nobr> + <td><nobr>RESO</nobr> </td> - <td><nobr></nobr> + <td><nobr>FIXE</nobr> </td> <td>Deploy openocd-native, not openocd, and make openocd-nati... </td> @@ -6890,9 +6922,9 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>mickey@vanille-media.de</nobr> </td> - <td><nobr>NEW</nobr> + <td><nobr>RESO</nobr> </td> - <td><nobr></nobr> + <td><nobr>FIXE</nobr> </td> <td>Fix remaining https urls in bitbake recipes. </td> @@ -6918,208 +6950,1254 @@ all_bugs = """<!-- 1.0@bugzilla.org --> </td> <td><nobr>mickey@vanille-media.de</nobr> </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>LATE</nobr> + </td> + <td>manual test bug + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=239">239</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>LATE</nobr> + </td> + <td>foo + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=240">240</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>INVA</nobr> + </td> + <td>broken-1.0-r0-do_fetch + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=241">241</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>CLOS</nobr> + </td> + <td><nobr>LATE</nobr> + </td> + <td>broken-1.0-r0-do_fetch + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=242">242</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>INVA</nobr> + </td> + <td>broken-1.0-r0-do_compile + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=243">243</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>INVA</nobr> + </td> + <td>broken-1.0-r0-do_configure + </td> + + </tr> + + + + + + + <tr class="bz_major bz_P2 "> + + <td> + <a href="show_bug.cgi?id=244">244</a> + </td> + + <td><nobr>maj</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>PC</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> <td><nobr>NEW</nobr> </td> <td><nobr></nobr> </td> - <td>manual test bug + <td>I can't build Xorg7.1 from MokoMakefile </td> </tr> - </table> + + <tr class="bz_normal bz_P2 "> -228 bugs found. + <td> + <a href="show_bug.cgi?id=245">245</a> + </td> + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>laforge@openmoko.org</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>Neo crashes when writing large amounts of data to SD + </td> -<br> + </tr> + + + <tr class="bz_normal bz_P2 "> + <td> + <a href="show_bug.cgi?id=246">246</a> + </td> + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>PC</nobr> + </td> + <td><nobr>sean_chiang@fic.com.tw</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>Debug board needs to be recognized by mainline linux kernel. + </td> + </tr> + + + <tr class="bz_major bz_P2 "> - <form method="post" action="long_list.cgi"> - <input type="hidden" name="buglist" value="1,2,4,5,7,8,9,10,11,12,13,14,15,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,192,194,195,196,197,198,199,200,201,202,205,206,207,208,209,210,211,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,233,234,235,236,237,238"> - <input type="submit" value="Long Format"> + <td> + <a href="show_bug.cgi?id=247">247</a> + </td> - <a href="query.cgi">Query Page</a> - <a href="enter_bug.cgi">Enter New Bug</a> - <a href="colchange.cgi?product=OpenMoko">Change Columns</a> + <td><nobr>maj</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>thomas@openedhand.com</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>openmoko-dates svn rev. 335 does no longer build + </td> - <a href="buglist.cgi?product=OpenMoko&order=bugs.bug_id&tweak=1">Change Several - Bugs at Once</a> - + </tr> - <a href="mailto:stefan@openmoko.org,sean_mosko@fic.com.tw,songcw@fic-sh.com.cn,buglog@lists.openmoko.org,henryk@ploetzli.ch,davewu01@seed.net.tw,thomas@openedhand.com,ken_zhao@fic-sh.com.cn,gordon_hsu@fic-sh.com.cn,teddy@fic-sh.com.cn,marcel@holtmann.org,cj_steven@fic-sh.com.cn,mickey@vanille-media.de,laforge@openmoko.org,tonyguan@fic-sh.com.cn,sean_chiang@fic.com.tw,werner@openmoko.org,sunzhiyong@fic-sh.com.cn,graeme.gregory@wolfsonmicro.com">Send Mail to Bug Owners</a> + - <a href="query.cgi?product=OpenMoko">Edit this Query</a> - </form> + + <tr class="bz_normal bz_P2 "> + <td> + <a href="show_bug.cgi?id=248">248</a> + </td> + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>PC</nobr> + </td> + <td><nobr>buglog@lists.openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>Buttons disappear under zoom + </td> + </tr> + -<!-- 1.0@bugzilla.org --> + + + <tr class="bz_enhancement bz_P2 "> + + <td> + <a href="show_bug.cgi?id=249">249</a> + </td> + + <td><nobr>enh</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>All</nobr> + </td> + <td><nobr>laforge@openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>add command to print gsmd version number + </td> + </tr> + -</div> -<div class="footer"> - <div class="group">This is <b>Bugzilla</b>: the Mozilla bug system. For more information about what Bugzilla is and what it can do, see <a href="http://www.bugzilla.org/">bugzilla.org</a>.</div> - <!-- 1.0@bugzilla.org --> + <tr class="bz_normal bz_P2 "> + <td> + <a href="show_bug.cgi?id=250">250</a> + </td> + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>INVA</nobr> + </td> + <td>broken-1.0-r0-do_compile + </td> + </tr> + -<form method="get" action="show_bug.cgi"> - <div class="group"> - <a href="enter_bug.cgi">New</a> | <a href="query.cgi">Query</a> | <input type="submit" value="Find"> bug # <input name="id" size="6"> | <a href="reports.cgi">Reports</a> | <a href="votes.cgi?action=show_user">My Votes</a> - </div> - - <div class="group"> - Edit <a href="userprefs.cgi">prefs</a> - | <a href="relogin.cgi">Log out</a> freyther@yahoo.com - </div> + - - - - <div class="group"> - Preset Queries: + <tr class="bz_normal bz_P2 "> - <a href="buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=freyther%40yahoo.com&emailtype1=exact&emailassigned_to1=1&emailreporter1=1">My Bugs</a> + <td> + <a href="show_bug.cgi?id=251">251</a> + </td> - </div> -</form> -</div> + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>INVA</nobr> + </td> + <td>broken-1.0-r0-do_compile + </td> -</body> -</html> -""" + </tr> -no_bugs = """<!-- 1.0@bugzilla.org --> + + + <tr class="bz_normal bz_P2 "> + <td> + <a href="show_bug.cgi?id=252">252</a> + </td> + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>REOP</nobr> + </td> + <td><nobr></nobr> + </td> + <td>openmoko-devel-image-1.0-r0-do_rootfs + </td> + </tr> + + + <tr class="bz_normal bz_P2 "> -<!-- 1.0@bugzilla.org --> + <td> + <a href="show_bug.cgi?id=253">253</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>Mount /tmp as tmpfs + </td> + </tr> + -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<html> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> - <title>Bug List</title> + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=254">254</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Oth</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>bug with "patch" on arklinux 2006.1?? + </td> + + </tr> - - - - <link href="/style/style.css" rel="stylesheet" type="text/css" /> - - <link href="/bugzilla/css/buglist.css" rel="stylesheet" type="text/css"> - </head> + + + <tr class="bz_normal bz_P2 "> - <body bgcolor="#FFFFFF" onload=""> + <td> + <a href="show_bug.cgi?id=255">255</a> + </td> + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>tony_tu@fiwin.com.tw</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>battery voltage scale is not correct + </td> -<!-- 1.0@bugzilla.org --> + </tr> + + - <div id="header"> - <a href="http://bugzilla.openmoko.org/cgi-bin/bugzilla/" id="site_logo"><img src="/style/images/openmoko_logo.png" alt="openmoko.org" /></a> - - <div id="main_navigation"> - <ul> - <li><a href="http://www.openmoko.org/" class="nav_home"><span>Home</span></a></li> - <li><a href="http://wiki.openmoko.org/" class="nav_wiki"><span>Wiki</span></a></li> - <li><a href="http://bugzilla.openmoko.org/" class="nav_bugzilla selected"><span>Bugzilla</span></a></li> - <li><a href="http://planet.openmoko.org/" class="nav_planet"><span>Planet</span></a></li> - <li><a href="http://projects.openmoko.org/" class="nav_projects"><span>Projects</span></a></li> - <li><a href="http://lists.openmoko.org/" class="nav_lists"><span>Lists</span></a></li> - </ul> - </div> - </div> + <tr class="bz_critical bz_P2 "> - <div class="page_title"> - <strong>Bug List</strong> - </div> - - <div class="container"> + <td> + <a href="show_bug.cgi?id=256">256</a> + </td> -<div align="center"> - <b>Tue Mar 6 20:13:26 CET 2007</b><br> + <td><nobr>cri</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>PC</nobr> + </td> + <td><nobr>sean_chiang@fic.com.tw</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>GSM Modem doesn't seem to work on some devices + </td> + </tr> - <a href="quips.cgi"><i>GOT THE MESSAGE OF no match -</i></a> + -</div> + -<hr> + <tr class="bz_normal bz_P2 "> + <td> + <a href="show_bug.cgi?id=257">257</a> + </td> + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Oth</nobr> + </td> + <td><nobr>sean_chiang@fic.com.tw</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>AUX button sticking + </td> + </tr> + + + <tr class="bz_major bz_P2 "> + <td> + <a href="show_bug.cgi?id=258">258</a> + </td> + <td><nobr>maj</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>All</nobr> + </td> + <td><nobr>cj_steven@fic-sh.com.cn</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>Main Menu needs to have Single Instance functionality + </td> + </tr> + + + <tr class="bz_normal bz_P2 "> + <td> + <a href="show_bug.cgi?id=259">259</a> + </td> + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>stefan@openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>implement 500mA charging in u-boot + </td> -<!-- 1.0@bugzilla.org --> + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=260">260</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>stefan@openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>implement 100mA charging in Linux + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=261">261</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>stefan@openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>Implement 500mA charging using wall-outlet charger + </td> + + </tr> + + + + + + + <tr class="bz_enhancement bz_P2 "> + + <td> + <a href="show_bug.cgi?id=262">262</a> + </td> + + <td><nobr>enh</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>buglog@lists.openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>Indicate different charging mode in battery applet + </td> + + </tr> + + + + + + + <tr class="bz_blocker bz_P2 "> + + <td> + <a href="show_bug.cgi?id=263">263</a> + </td> + + <td><nobr>blo</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>laforge@openmoko.org</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>gsmd doesn't receive AT reply from the modem properly. + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=264">264</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>PC</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>package libelf-0.8.6-r0: task do_populate_staging: failed + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=265">265</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>PC</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>MokoMakefile: perl-native fix + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=266">266</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>PC</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>ftdi-eeprom-native missing confuse-native dependency + </td> + + </tr> + + + + + + <tr class="bz_enhancement bz_P4 "> + + <td> + <a href="show_bug.cgi?id=267">267</a> + </td> + + <td><nobr>enh</nobr> + </td> + <td><nobr>P4</nobr> + </td> + <td><nobr>PC</nobr> + </td> + <td><nobr>buglog@lists.openmoko.org</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>internal function duplicates strstr(3) + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=268">268</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>PC</nobr> + </td> + <td><nobr>buglog@lists.openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>openmoko-today crashes when one of the buttons is pressed + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=269">269</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>openmoko-contacts-0.1+svnnow-r3_0_200703151745-do_unpack + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=270">270</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>does our xserver need security updates? + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=271">271</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>laforge@openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>It would be nice if ppp was supported by kernel + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=272">272</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>openmoko-contacts-0.1+svnnow-r3_0_200703152250-do_unpack + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=273">273</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>openmoko-contacts-0.1+svnnow-r3_0_200703160254-do_unpack + </td> + + </tr> + + - Zarro Boogs found. - <p> - <a href="query.cgi">Query Page</a> - <a href="enter_bug.cgi">Enter New Bug</a> - <a href="query.cgi?short_desc_type=substring&short_desc=foo+test+bug&product=OpenMoko&component=autobuilds">Edit this query</a> - </p> + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=274">274</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>openmoko-contacts-0.1+svnnow-r3_0_200703160321-do_unpack + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=275">275</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>openmoko-contacts-0.1+svnnow-r3_0_200703160350-do_unpack + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P3 "> + + <td> + <a href="show_bug.cgi?id=276">276</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P3</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>songcw@fic-sh.com.cn</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>The open file window is too ugly + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=277">277</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>openmoko-contacts-0.1+svnnow-r3_0_200703160712-do_unpack + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=278">278</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>mickey@vanille-media.de</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>openmoko-contacts-0.1+svnnow-r3_0_200703160805-do_unpack + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=279">279</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>buglog@lists.openmoko.org</nobr> + </td> + <td><nobr>RESO</nobr> + </td> + <td><nobr>FIXE</nobr> + </td> + <td>Appmanager crush when install packages + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=280">280</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>songcw@fic-sh.com.cn</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>openmoko-appmanager not refresh the packages list after r... + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P3 "> + + <td> + <a href="show_bug.cgi?id=281">281</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P3</nobr> + </td> + <td><nobr>PC</nobr> + </td> + <td><nobr>buglog@lists.openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>implicit declaration of function `strdup' + </td> + + </tr> + + + + + + + <tr class="bz_normal bz_P2 "> + + <td> + <a href="show_bug.cgi?id=282">282</a> + </td> + + <td><nobr>nor</nobr> + </td> + <td><nobr>P2</nobr> + </td> + <td><nobr>Neo</nobr> + </td> + <td><nobr>buglog@lists.openmoko.org</nobr> + </td> + <td><nobr>NEW</nobr> + </td> + <td><nobr></nobr> + </td> + <td>microSD Problem + </td> + + </tr> + + + </table> + + + + +282 bugs found. <br> @@ -7135,6 +8213,20 @@ no_bugs = """<!-- 1.0@bugzilla.org --> + <form method="post" action="long_list.cgi"> + <input type="hidden" name="buglist" value="1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282"> + <input type="submit" value="Long Format"> + + <a href="query.cgi">Query Page</a> + <a href="enter_bug.cgi">Enter New Bug</a> + <a href="colchange.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Change Columns</a> + + + + <a href="query.cgi?short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfieldfrom=&chfieldto=Now&chfieldvalue=&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Edit this Query</a> + + </form> + @@ -7150,8 +8242,8 @@ no_bugs = """<!-- 1.0@bugzilla.org --> </div> <div class="footer"> - <div class="group">This is <b>Bugzilla</b>: the Mozilla bug system. For more information about what Bugzilla is and what it can do, see <a href="http://www.bugzilla.org/">bugzilla.org</a>.</div> - <!-- 1.0@bugzilla.org --> + <div class="group">This is <b>Bugzilla</b>: the Mozilla bug system. For more information about what Bugzilla is and what it can do, see <a href="http://www.bugzilla.org/">bugzilla.org</a>.</div> + <!-- 1.0@bugzilla.org --> @@ -7159,24 +8251,13 @@ no_bugs = """<!-- 1.0@bugzilla.org --> <form method="get" action="show_bug.cgi"> - <div class="group"> - <a href="enter_bug.cgi">New</a> | <a href="query.cgi">Query</a> | <input type="submit" value="Find"> bug # <input name="id" size="6"> | <a href="reports.cgi">Reports</a> | <a href="votes.cgi?action=show_user">My Votes</a> - </div> - - <div class="group"> - Edit <a href="userprefs.cgi">prefs</a> - | <a href="relogin.cgi">Log out</a> freyther@yahoo.com - </div> - - - - <div class="group"> - Preset Queries: - - <a href="buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=freyther%40yahoo.com&emailtype1=exact&emailassigned_to1=1&emailreporter1=1">My Bugs</a> - + <a href="enter_bug.cgi">New</a> | <a href="query.cgi">Query</a> | <input type="submit" value="Find"> bug # <input name="id" size="6"> | <a href="reports.cgi">Reports</a> </div> + + <div> + <a href="createaccount.cgi">New Account</a> | <a href="query.cgi?GoAheadAndLogIn=1">Log In</a> + </div> </form> </div> @@ -7185,7 +8266,14 @@ no_bugs = """<!-- 1.0@bugzilla.org --> """ bugfinder =BugQueryExtractor() -#bugfinder.feed(site) -bugfinder.feed(all_bugs) -#bugfinder.feed(no_bugs) +bugfinder.feed(bugs_openmoko) print bugfinder.result() +print len(bugfinder.result()) + +seen_numbers = {} +for (number,_) in bugfinder.result(): + seen_numbers[number] = "Yes" + +for i in range(1,283): + if not seen_numbers.has_key(str(i)): + print "Not seen %d" % i diff --git a/packages/dfu-util/dfu-util-native_svn.bb b/packages/dfu-util/dfu-util-native_svn.bb index af6603ddd1..9bfe4bae2c 100644 --- a/packages/dfu-util/dfu-util-native_svn.bb +++ b/packages/dfu-util/dfu-util-native_svn.bb @@ -5,7 +5,8 @@ inherit native DEPENDS = "libusb-native" do_stage() { - install -m 0755 src/dfu-util ${STAGING_BINDIR_NATIVE} + install -d ${STAGING_BINDIR_NATIVE} + install -m 0755 src/dfu-util ${STAGING_BINDIR_NATIVE}/ } do_deploy() { diff --git a/packages/fis/fis_1.0.bb b/packages/fis/fis_1.0.bb index 404955cb75..ea4c0af6c8 100644 --- a/packages/fis/fis_1.0.bb +++ b/packages/fis/fis_1.0.bb @@ -1,4 +1,6 @@ DESCRIPTION = "Tool to edit the Redboot FIS partition layout from userspace" +PR = "r1" +DEPENDS = "boost" SRC_URI = "http://svn.chezphil.org/utils/trunk/fis.cc \ svn://svn.chezphil.org/;module=libpbe;proto=http" @@ -6,8 +8,11 @@ SRC_URI = "http://svn.chezphil.org/utils/trunk/fis.cc \ do_compile() { ${CXX} -Os -W -I${STAGING_INCDIR} -I${WORKDIR}/libpbe/trunk/include -o fis ${WORKDIR}/fis.cc \ ${WORKDIR}/libpbe/trunk/src/Exception.cc ${WORKDIR}/libpbe/trunk/src/utils.cc +} + +do_install() { ${STRIP} ${WORKDIR}/fis-${PV}/fis -# ${CXX} -Os -W -static -I${STAGING_INCDIR} -I${WORKDIR}/libpbe/trunk/include -o fis-static ${WORKDIR}/fis.cc \ -# ${WORKDIR}/libpbe/trunk/src/Exception.cc ${WORKDIR}/libpbe/trunk/src/utils.cc -# ${STRIP} ${WORKDIR}/fis-${PV}/fis-static -}
\ No newline at end of file + + install -d ${D}/${sbindir} + install -m 755 ${WORKDIR}/fis-${PV}/fis ${D}/${sbindir} +} diff --git a/packages/gnome/goffice_0.2.1.bb b/packages/gnome/goffice_0.2.1.bb index 59372fa5ec..2048cdd34d 100644 --- a/packages/gnome/goffice_0.2.1.bb +++ b/packages/gnome/goffice_0.2.1.bb @@ -1,9 +1,11 @@ DESCRIPTION="Gnome Office Library" LICENSE="GPLv2" -PR="r0" +PR="r1" DEPENDS="glib-2.0 gtk+ pango libgnomeprint libgsf libglade libxml2 libart-lgpl" +FILES_${PN}-dbg += "${libdir}/goffice/${PV}/plugins/*/.debug" + inherit gnome pkgconfig do_stage() { diff --git a/packages/gnome/goffice_0.3.2.bb b/packages/gnome/goffice_0.3.2.bb index 59503a7b43..a81f96910c 100644 --- a/packages/gnome/goffice_0.3.2.bb +++ b/packages/gnome/goffice_0.3.2.bb @@ -1,12 +1,12 @@ DESCRIPTION="Gnome Office Library" LICENSE="GPLv2" -PR="r0" +PR="r1" DEFAULT_PREFERENCE = "-1" DEPENDS="glib-2.0 gtk+ pango cairo libgnomeprint libgsf libglade libxml2 libart-lgpl" -FILES_${PN}-dbg += "${libdir}/goffice/0.2.1/plugins/*/.debug" +FILES_${PN}-dbg += "${libdir}/goffice/${PV}/plugins/*/.debug" inherit gnome pkgconfig diff --git a/packages/gspcav1/.mtn2git_empty b/packages/gspcav1/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/gspcav1/.mtn2git_empty diff --git a/packages/gspcav1/gspcav1-20070110/.mtn2git_empty b/packages/gspcav1/gspcav1-20070110/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/gspcav1/gspcav1-20070110/.mtn2git_empty diff --git a/packages/gspcav1/gspcav1-20070110/MS.patch b/packages/gspcav1/gspcav1-20070110/MS.patch new file mode 100644 index 0000000000..588a4bc3da --- /dev/null +++ b/packages/gspcav1/gspcav1-20070110/MS.patch @@ -0,0 +1,29 @@ +--- gspcav1-20070110/gspca_core.c.orig 2007-03-16 23:24:37.000000000 +0000 ++++ gspcav1-20070110/gspca_core.c 2007-03-16 23:24:43.000000000 +0000 +@@ -398,7 +398,7 @@ + Sonyc002, + Vimicro0321, + Orbicam, +- M$VX1000, ++ MSVX1000, + Trust610LCDPowerCamZoom, + Sonyc001, + LastCamera +@@ -580,7 +580,7 @@ + {Sonyc002,"Vc0321"}, + {Vimicro0321,"Vc0321"}, + {Orbicam,"Logitech Orbicam"}, +- {M$VX1000,"MicroSoft VX1000"}, ++ {MSVX1000,"MicroSoft VX1000"}, + {Trust610LCDPowerCamZoom, "Trust 610 LCD PowerC@m Zoom"}, + {Sonyc001,"Sony Visual Communication VGP-VCC1"}, + {-1, NULL} +@@ -3124,7 +3124,7 @@ + case 0x045e: + switch(product){ + case 0x00f7: +- spca50x->desc = M$VX1000; ++ spca50x->desc = MSVX1000; + spca50x->bridge = BRIDGE_SN9CXXX; + spca50x->sensor = SENSOR_OV7660; + spca50x->customid = SN9C105; diff --git a/packages/gspcav1/gspcav1-20070110/Makefile.patch b/packages/gspcav1/gspcav1-20070110/Makefile.patch new file mode 100644 index 0000000000..87262686cb --- /dev/null +++ b/packages/gspcav1/gspcav1-20070110/Makefile.patch @@ -0,0 +1,11 @@ +--- gspcav1-20070110/Makefile.orig 2007-03-16 23:20:18.000000000 +0000 ++++ gspcav1-20070110/Makefile 2007-03-16 23:20:44.000000000 +0000 +@@ -41,7 +41,7 @@ + MODULE_INSTALLDIR2 = /lib/modules/$(KERNEL_VERSION)/kernel/drivers/media/video/ + + default: +- $(MAKE) -C $(KERNELDIR) SUBDIRS=$(PWD) CC=$(CC) modules ++ $(MAKE) -C $(KERNELDIR) SUBDIRS=$(PWD) CC="$(CC)" modules + + install: + mkdir -p $(MODULE_INSTALLDIR) diff --git a/packages/gspcav1/gspcav1_20070110.bb b/packages/gspcav1/gspcav1_20070110.bb new file mode 100644 index 0000000000..86cb1010df --- /dev/null +++ b/packages/gspcav1/gspcav1_20070110.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "USB Webcam driver for spca5xx chipset family supporting \ +over 100 models of camera" +PRIORITY = "optional" +SECTION = "kernel/modules" +LICENSE = "GPL" + +SRC_URI = "http://mxhaard.free.fr/spca50x/Download/${PN}-${PV}.tar.gz \ + file://Makefile.patch;patch=1 \ + file://MS.patch;patch=1" + +S = "${WORKDIR}/${PN}-${PV}" + +inherit module + +do_compile () { + unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS + oe_runmake 'KERNELDIR=${STAGING_KERNEL_DIR}' \ + 'CC=${KERNEL_CC}' \ + 'LD=${KERNEL_LD}' +} + +do_install() { + install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/usb/media + install -m 0644 *${KERNEL_OBJECT_SUFFIX} ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/usb/media +} diff --git a/packages/gtk+/gtk+-1.2_1.2.10.bb b/packages/gtk+/gtk+-1.2_1.2.10.bb index 8025beb75c..b3d0a61bad 100644 --- a/packages/gtk+/gtk+-1.2_1.2.10.bb +++ b/packages/gtk+/gtk+-1.2_1.2.10.bb @@ -4,7 +4,7 @@ HOMEPAGE = "http://www.gtk.org" SECTION = "libs" PRIORITY = "optional" DEPENDS = "glib-1.2 jpeg libpng libxext" -PR = "r2" +PR = "r3" SRC_URI = "ftp://ftp.gtk.org/pub/gtk/v1.2/gtk+-${PV}.tar.gz \ file://timezone-fix.patch;patch=1 \ @@ -48,7 +48,7 @@ do_stage () { mkdir -p ${STAGING_LIBDIR}/gtk-1.2/include install -m 0644 gtk.m4 ${STAGING_DATADIR}/aclocal/ - install -m 0755 gtk-config ${STAGING_BINDIR_CROSS} + install -m 0755 gtk-config ${STAGING_BINDIR_CROSS}/ } do_install_append () { diff --git a/packages/images/foonas-image.bb b/packages/images/foonas-image.bb index 23059d9bca..3d2c621438 100644 --- a/packages/images/foonas-image.bb +++ b/packages/images/foonas-image.bb @@ -2,48 +2,21 @@ DESCRIPTION = "Foonas image" LICENSE = "GPL" PR = "r0" -DEPENDS = "${MACHINE_TASK_PROVIDER}" -EXTRA_IMAGECMD_turbostation = "--big-endian" -EXTRA_IMAGECMD_n2100 = "--little-endian" -EXTRA_IMAGECMD_jffs2 += " --eraseblock=${ERASEBLOCK_SIZE} -D ${SLUGOS_DEVICE_TABLE}" -IMAGE_LINGUAS = "" +inherit image -# This is passed to the image command to build the correct /dev -# directory (because only the image program can make actual -# dev entries!) -SLUGOS_DEVICE_TABLE = "${@bb.which(bb.data.getVar('BBPATH', d, 1), 'files/device_table-slugos.txt')}" +DEPENDS = "${MACHINE_TASK_PROVIDER} makedevs-native mtd-utils-native" +DEPENDS_n2100 += "openssl-native" -# IMAGE_PREPROCESS_COMMAND is run before making the image. -# We use this to do a few things: -# . remove the uImage, which is in a separate part of the flash already. -# . adjust the default run level (sysvinit is 5 by default, we like 3) -# . set a default root password, which is no more secure than a blank one -# (since it is documented, in case you were wondering) -# . make the boot more verbose -# -IMAGE_PREPROCESS_COMMAND += "sed -i -es,^id:5:initdefault:,id:3:initdefault:, ${IMAGE_ROOTFS}/etc/inittab;" -IMAGE_PREPROCESS_COMMAND += "sed -i -es,^root::0,root:BTMzOOAQfESg6:0, ${IMAGE_ROOTFS}/etc/passwd;" -IMAGE_PREPROCESS_COMMAND += "sed -i -es,^VERBOSE=no,VERBOSE=very, ${IMAGE_ROOTFS}/etc/default/rcS;" -# Always just make a new flash image. -PACK_IMAGE = '${MACHINE}_pack_image;' IMAGE_POSTPROCESS_COMMAND += "${PACK_IMAGE}" PACK_IMAGE_DEPENDS = "" -#EXTRA_IMAGEDEPENDS += "${PACK_IMAGE_DEPENDS}" - -# These depends define native utilities - they do not get put in the flash and -# are not required to build the image. -IMAGE_TOOLS = "" -#EXTRA_IMAGEDEPENDS += "${IMAGE_TOOLS}" - -FOONAS_SUPPORT += "diffutils cpio findutils udev" -FOONAS_SUPPORT_turbostation += "uboot-utils" - -# this gets /lib/modules made.... -FOONAS_KERNEL_turbostation = "kernel-module-ext3 kernel-module-minix \ - kernel-module-usb-storage" - -FOONAS_KERNEL_n2100 = "kernel-module-ext2 kernel-module-usb-storage" +PACK_IMAGE = '${MACHINE}_pack_image;' +IMAGE_PREPROCESS_COMMAND += "sed -i -es,^id:5:initdefault:,id:3:initdefault:, ${IMAGE_ROOTFS}/etc/inittab;" +IMAGE_PREPROCESS_COMMAND += "sed -i -es,^root::0,root:BTMzOOAQfESg6:0, ${IMAGE_ROOTFS}/etc/passwd;" +IMAGE_PREPROCESS_COMMAND += "sed -i -es,^VERBOSE=no,VERBOSE=very, ${IMAGE_ROOTFS}/etc/default/rcS;" +FOONAS_DEVICE_TABLE = "${@bb.which(bb.data.getVar('BBPATH', d, 1), 'files/device_table-slugos.txt')}" +EXTRA_IMAGECMD_jffs2 += " --eraseblock=${ERASEBLOCK_SIZE} -D ${FOONAS_DEVICE_TABLE}" +IMAGE_LINGUAS = "" RDEPENDS = " \ base-files base-passwd netbase \ @@ -51,7 +24,7 @@ RDEPENDS = " \ update-modules sysvinit tinylogin \ module-init-tools-depmod modutils-initscripts \ ipkg-collateral ipkg ipkg-link \ - libgcc1 \ + libgcc1 diffutils cpio findutils\ portmap \ dropbear \ e2fsprogs-blkid \ @@ -64,8 +37,6 @@ RDEPENDS = " \ PACKAGE_INSTALL = "${RDEPENDS}" -inherit image - # At this point you have to make a ${MACHINE}_pack_image for your machine. turbostation_pack_image() { diff --git a/packages/iproute2/iproute2-2.6.20/.mtn2git_empty b/packages/iproute2/iproute2-2.6.20/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/iproute2/iproute2-2.6.20/.mtn2git_empty diff --git a/packages/iproute2/iproute2-2.6.20/ip6tunnel.patch b/packages/iproute2/iproute2-2.6.20/ip6tunnel.patch new file mode 100644 index 0000000000..371de01c16 --- /dev/null +++ b/packages/iproute2/iproute2-2.6.20/ip6tunnel.patch @@ -0,0 +1,10 @@ +--- iproute-2.6.20-070313/ip/ip6tunnel.c 2007/03/17 03:44:27 1.1 ++++ iproute-2.6.20-070313/ip/ip6tunnel.c 2007/03/17 03:43:14 +@@ -33,6 +33,7 @@ + #include <sys/socket.h> + #include <arpa/inet.h> + #include <sys/ioctl.h> ++#include <linux/types.h> + #include <linux/ip.h> + #include <linux/if.h> + #include <linux/if_arp.h> diff --git a/packages/iproute2/iproute2-2.6.20/man-pages-fix.patch b/packages/iproute2/iproute2-2.6.20/man-pages-fix.patch new file mode 100644 index 0000000000..924d0ed4dc --- /dev/null +++ b/packages/iproute2/iproute2-2.6.20/man-pages-fix.patch @@ -0,0 +1,13 @@ +--- iproute-2.6.20-070313/Makefile 2007/03/17 04:24:45 1.1 ++++ iproute-2.6.20-070313/Makefile 2007/03/17 04:27:39 +@@ -52,8 +52,8 @@ + install -m 0644 $(shell find etc/iproute2 -maxdepth 1 -type f) $(DESTDIR)$(CONFDIR) + install -m 0755 -d $(DESTDIR)$(MANDIR)/man8 + install -m 0644 $(shell find man/man8 -maxdepth 1 -type f) $(DESTDIR)$(MANDIR)/man8 +- ln -sf tc-pbfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-bfifo.8 +- ln -sf tc-pbfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-pfifo.8 ++ ln -sf tc-bfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-pfifo.8 ++ ln -sf tc-bfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-pbfifo.8 + install -m 0755 -d $(DESTDIR)$(MANDIR)/man3 + install -m 0644 $(shell find man/man3 -maxdepth 1 -type f) $(DESTDIR)$(MANDIR)/man3 + diff --git a/packages/iproute2/iproute2-2.6.20/new-flex-fix.patch b/packages/iproute2/iproute2-2.6.20/new-flex-fix.patch new file mode 100644 index 0000000000..af7272163e --- /dev/null +++ b/packages/iproute2/iproute2-2.6.20/new-flex-fix.patch @@ -0,0 +1,83 @@ +The tc command was failing to build due to flex errors. These errors are +caused by an incompatible change to flex in recent versions, including the +version shipped with OE. + +This fix is as per the one used by opensure: + + http://lists.opensuse.org/opensuse-commit/2006-04/msg00090.html + +and simple renames str to prevent it conflicting. + +--- iproute-2.6.20-070313/tc/emp_ematch.l 2007/03/17 02:52:20 1.1 ++++ iproute-2.6.20-070313/tc/emp_ematch.l 2007/03/17 02:54:01 +@@ -63,7 +63,7 @@ + + %} + +-%x str ++%x STR + + %option 8bit stack warn noyywrap prefix="ematch_" + %% +@@ -78,17 +78,17 @@ + } + strbuf_index = 0; + +- BEGIN(str); ++ BEGIN(STR); + } + +-<str>\" { ++<STR>\" { + BEGIN(INITIAL); + yylval.b = bstr_new(strbuf, strbuf_index); + yylval.b->quoted = 1; + return ATTRIBUTE; + } + +-<str>\\[0-7]{1,3} { /* octal escape sequence */ ++<STR>\\[0-7]{1,3} { /* octal escape sequence */ + int res; + + sscanf(yytext + 1, "%o", &res); +@@ -100,12 +100,12 @@ + strbuf_append_char((unsigned char) res); + } + +-<str>\\[0-9]+ { /* catch wrong octal escape seq. */ ++<STR>\\[0-9]+ { /* catch wrong octal escape seq. */ + fprintf(stderr, "error: invalid octale escape sequence\n"); + return ERROR; + } + +-<str>\\x[0-9a-fA-F]{1,2} { ++<STR>\\x[0-9a-fA-F]{1,2} { + int res; + + sscanf(yytext + 2, "%x", &res); +@@ -118,16 +118,16 @@ + strbuf_append_char((unsigned char) res); + } + +-<str>\\n strbuf_append_char('\n'); +-<str>\\r strbuf_append_char('\r'); +-<str>\\t strbuf_append_char('\t'); +-<str>\\v strbuf_append_char('\v'); +-<str>\\b strbuf_append_char('\b'); +-<str>\\f strbuf_append_char('\f'); +-<str>\\a strbuf_append_char('\a'); ++<STR>\\n strbuf_append_char('\n'); ++<STR>\\r strbuf_append_char('\r'); ++<STR>\\t strbuf_append_char('\t'); ++<STR>\\v strbuf_append_char('\v'); ++<STR>\\b strbuf_append_char('\b'); ++<STR>\\f strbuf_append_char('\f'); ++<STR>\\a strbuf_append_char('\a'); + +-<str>\\(.|\n) strbuf_append_char(yytext[1]); +-<str>[^\\\n\"]+ strbuf_append_charp(yytext); ++<STR>\\(.|\n) strbuf_append_char(yytext[1]); ++<STR>[^\\\n\"]+ strbuf_append_charp(yytext); + + [aA][nN][dD] return AND; + [oO][rR] return OR; diff --git a/packages/iproute2/iproute2-2.6.20/no-strip.patch b/packages/iproute2/iproute2-2.6.20/no-strip.patch new file mode 100644 index 0000000000..6490dadb07 --- /dev/null +++ b/packages/iproute2/iproute2-2.6.20/no-strip.patch @@ -0,0 +1,36 @@ +--- iproute-2.6.20-070313/ip/Makefile 2007/03/17 05:17:30 1.1 ++++ iproute-2.6.20-070313/ip/Makefile 2007/03/17 05:17:37 +@@ -16,7 +16,7 @@ + rtmon: $(RTMONOBJ) $(LIBNETLINK) + + install: all +- install -m 0755 -s $(TARGETS) $(DESTDIR)$(SBINDIR) ++ install -m 0755 $(TARGETS) $(DESTDIR)$(SBINDIR) + install -m 0755 $(SCRIPTS) $(DESTDIR)$(SBINDIR) + + clean: +--- iproute-2.6.20-070313/misc/Makefile 2007/03/17 05:18:20 1.1 ++++ iproute-2.6.20-070313/misc/Makefile 2007/03/17 05:18:26 +@@ -27,7 +27,7 @@ + lnstat: $(LNSTATOBJ) + + install: all +- install -m 0755 -s $(TARGETS) $(DESTDIR)$(SBINDIR) ++ install -m 0755 $(TARGETS) $(DESTDIR)$(SBINDIR) + ln -sf lnstat $(DESTDIR)$(SBINDIR)/rtstat + ln -sf lnstat $(DESTDIR)$(SBINDIR)/ctstat + +--- iproute-2.6.20-070313/tc/Makefile 2007/03/17 05:17:42 1.1 ++++ iproute-2.6.20-070313/tc/Makefile 2007/03/17 05:17:54 +@@ -70,9 +70,9 @@ + + install: all + mkdir -p $(DESTDIR)/usr/lib/tc +- install -m 0755 -s tc $(DESTDIR)$(SBINDIR) ++ install -m 0755 tc $(DESTDIR)$(SBINDIR) + for i in $(TCSO); \ +- do install -m 755 -s $$i $(DESTDIR)/usr/lib/tc; \ ++ do install -m 755 $$i $(DESTDIR)/usr/lib/tc; \ + done + + clean: diff --git a/packages/iproute2/iproute2.inc b/packages/iproute2/iproute2.inc index 006b27b60f..e14bfdeefe 100644 --- a/packages/iproute2/iproute2.inc +++ b/packages/iproute2/iproute2.inc @@ -3,12 +3,20 @@ SECTION = "base" LICENSE = "GPL" DEPENDS = "flex-native bison-native" -# Set DATE in the .bb file +# This changed from iproute2 to iproute with version 2.6.20, so set to +# iproute in the recipe for 2.6.20 and newer versions. +DIRNAME ?= "${PN}" + +# Set the DATE in the .bb file SRC_URI = "http://developer.osdl.org/dev/iproute2/download/${P}-${DATE}.tar.gz" -S = "${WORKDIR}/${P}-${DATE}" +S = "${WORKDIR}/${DIRNAME}-${PV}-${DATE}" -EXTRA_OEMAKE = "CC='${CC}' KERNEL_INCLUDE=${STAGING_KERNEL_DIR}/include DOCDIR=${docdir}/iproute2 SUBDIRS='lib tc ip' SBINDIR=/sbin" +EXTRA_OEMAKE = "CC='${CC}' \ + KERNEL_INCLUDE=${STAGING_KERNEL_DIR}/include \ + DOCDIR=${docdir}/iproute2 \ + SUBDIRS='lib tc ip' \ + SBINDIR=/sbin" do_install () { oe_runmake DESTDIR=${D} install diff --git a/packages/iproute2/iproute2_2.6.16.bb b/packages/iproute2/iproute2_2.6.16.bb index ddd5ef71dd..fc87b9e3b5 100644 --- a/packages/iproute2/iproute2_2.6.16.bb +++ b/packages/iproute2/iproute2_2.6.16.bb @@ -1,7 +1,7 @@ -PR = "r1" +PR = "r2" -SRC_URI += "file://iproute2-2.6.15_no_strip.diff;patch=1;pnum=0 \ - file://new-flex-fix.patch;patch=1" +SRC_URI_append = " file://iproute2-2.6.15_no_strip.diff;patch=1;pnum=0 \ + file://new-flex-fix.patch;patch=1" require iproute2.inc diff --git a/packages/iproute2/iproute2_2.6.18.bb b/packages/iproute2/iproute2_2.6.18.bb index ee3ff29550..9d85126b68 100644 --- a/packages/iproute2/iproute2_2.6.18.bb +++ b/packages/iproute2/iproute2_2.6.18.bb @@ -1,7 +1,7 @@ -PR = "r0" +PR = "r1" -SRC_URI += "file://iproute2-2.6.15_no_strip.diff;patch=1;pnum=0 \ - file://new-flex-fix.patch;patch=1" +SRC_URI_append = " file://iproute2-2.6.15_no_strip.diff;patch=1;pnum=0 \ + file://new-flex-fix.patch;patch=1" require iproute2.inc diff --git a/packages/libftdi/ftdi-eeprom-native_0.2.bb b/packages/libftdi/ftdi-eeprom-native_0.2.bb index 1b48bd08f7..56613969d9 100644 --- a/packages/libftdi/ftdi-eeprom-native_0.2.bb +++ b/packages/libftdi/ftdi-eeprom-native_0.2.bb @@ -3,6 +3,7 @@ require ftdi-eeprom_${PV}.bb DEPENDS = "libftdi-native confuse-native" do_stage() { - install -m 0755 ftdi_eeprom/ftdi_eeprom ${STAGING_BINDIR_NATIVE} + install -d ${STAGING_BINDIR_NATIVE} + install -m 0755 ftdi_eeprom/ftdi_eeprom ${STAGING_BINDIR_NATIVE}/ } diff --git a/packages/libol/libol_0.3.18.bb b/packages/libol/libol_0.3.18.bb index 3ddaaa62a3..9484f8e99e 100644 --- a/packages/libol/libol_0.3.18.bb +++ b/packages/libol/libol_0.3.18.bb @@ -1,4 +1,4 @@ -PR = "r5" +PR = "r6" SRC_URI = "http://www.balabit.com/downloads/libol/0.3/${P}.tar.gz" @@ -7,9 +7,10 @@ S = "${WORKDIR}/${PN}-${PV}" inherit autotools do_stage() { + install -d ${STAGING_BINDIR_CROSS} install -d ${STAGING_INCDIR}/libol - install -m 0755 ${S}/libol-config ${STAGING_BINDIR_CROSS} - install -m 0755 ${S}/src/.libs/libol.so.0.0.0 ${STAGING_LIBDIR} + install -m 0755 ${S}/libol-config ${STAGING_BINDIR_CROSS}/ + install -m 0755 ${S}/src/.libs/libol.so.0.0.0 ${STAGING_LIBDIR}/ ln -fs ${STAGING_LIBDIR}/libol.so.0.0.0 ${STAGING_LIBDIR}/libol.so.0 install ${S}/src/*.h ${STAGING_INCDIR}/libol/ } diff --git a/packages/lrzsz/lrzsz_0.12.20.bb b/packages/lrzsz/lrzsz_0.12.20.bb index 8110661ac1..0a194f9a05 100644 --- a/packages/lrzsz/lrzsz_0.12.20.bb +++ b/packages/lrzsz/lrzsz_0.12.20.bb @@ -3,7 +3,7 @@ SECTION = "console/network" PRIORITY = "standard" DESCRIPTION = "Tools for zmodem/xmodem/ymodem file transfer" DEPENDS = "" -PR = "r2" +PR = "r3" SRC_URI = "http://www.ohse.de/uwe/releases/lrzsz-${PV}.tar.gz \ file://autotools.patch;patch=1 \ @@ -15,10 +15,16 @@ inherit autotools gettext do_install() { install -d ${D}${bindir}/ install -m 0755 src/lrz src/lsz ${D}${bindir}/ - ln -sf ./lrz ${D}${bindir}/rz - ln -sf ./lrz ${D}${bindir}/rx - ln -sf ./lrz ${D}${bindir}/rb - ln -sf ./lsz ${D}${bindir}/sz - ln -sf ./lsz ${D}${bindir}/sx - ln -sf ./lsz ${D}${bindir}/sb } + +pkg_postinst() { + for util in rz rx rb sz sx sb; do + update-alternatives --install ${bindir}/$util $util lrz 100 + done +} + +pkg_postrm() { + for util in rz rx rb sz sx sb; do + update-alternatives --remove $util ${bindir}/lrz + done +}
\ No newline at end of file diff --git a/packages/netatalk/.mtn2git_empty b/packages/netatalk/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/netatalk/.mtn2git_empty diff --git a/packages/netatalk/files/.mtn2git_empty b/packages/netatalk/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/netatalk/files/.mtn2git_empty diff --git a/packages/netatalk/files/init b/packages/netatalk/files/init new file mode 100755 index 0000000000..926f9bbb1e --- /dev/null +++ b/packages/netatalk/files/init @@ -0,0 +1,111 @@ +#!/sbin/runscript + +# AppleTalk daemons. Make sure not to start atalkd in the background: +# its data structures must have time to stablize before running the +# other processes. + +depend() { + need net + use logger dns +} + +atalk_startup () { +# . /etc/netatalk/netatalk.conf + + if [ "${ATALKD_RUN}" != "no" ]; then + ebegin "Starting atalkd" + start-stop-daemon --start --quiet --exec /usr/sbin/atalkd + eend $? + + for reg in \ + "${ATALK_NAME}:Workstation${ATALK_ZONE}" \ + "${ATALK_NAME}:netatalk${ATALK_ZONE}" + do + ebegin " Registering $reg" + /usr/bin/nbprgstr "$reg" + eend $? + done + + if [ "${PAPD_RUN}" = "yes" ]; then + ebegin " Starting papd" + start-stop-daemon --start --quiet --exec /usr/sbin/papd + eend $? + fi + + fi + + if [ "${CNID_METAD_RUN}" = "yes" ] ; then + ebegin "Starting cnid_metad" + start-stop-daemon --start --quiet --exec /usr/sbin/cnid_metad + eend $? + fi + + + if [ "${AFPD_RUN}" = "yes" ]; then + ebegin "Starting afpd" + start-stop-daemon --start --quiet --exec /usr/sbin/afpd -- \ + ${AFPD_UAMLIST} -g ${AFPD_GUEST} -c ${AFPD_MAX_CLIENTS} \ + -n "${ATALK_NAME}${ATALK_ZONE}" + eend $? + fi + + if [ "${TIMELORD_RUN}" = "yes" ]; then + ebegin "Starting timelord" + start-stop-daemon --start --quiet --exec /usr/sbin/timelord + eend $? + fi +} + +start () { + . /etc/netatalk/netatalk.conf + + if [ x"${ATALK_BGROUND}" = x"yes" ]; then + echo "Starting netatalk in the background ... " + atalk_startup >& /dev/null & + else + atalk_startup + fi +} + +stop () { + . /etc/netatalk/netatalk.conf + + if [ "${AFPD_RUN}" = "yes" ]; then + ebegin "Stopping afpd" + start-stop-daemon --stop --quiet --exec /usr/sbin/afpd + eend $? + fi + + if [ "${TIMELORD_RUN}" = "yes" ]; then + ebegin "Stopping timelord" + start-stop-daemon --stop --quiet --exec /usr/sbin/timelord + eend $? + fi + + if [ "${ATALKD_RUN}" != "no" ]; then + if [ "${PAPD_RUN}" = "yes" ]; then + ebegin "Stopping papd" + start-stop-daemon --stop --quiet --exec /usr/sbin/papd + eend $? + fi + + for reg in \ + "${ATALK_NAME}:Workstation${ATALK_ZONE}" \ + "${ATALK_NAME}:netatalk${ATALK_ZONE}" + do + ebegin "Unregistering $reg" + /usr/bin/nbpunrgstr "$reg" + eend $? + done + + ebegin "Stopping atalkd" + start-stop-daemon --stop --quiet --exec /usr/sbin/atalkd + eend $? + fi + + if [ "${CNID_METAD_RUN}" = "yes" ] ; then + ebegin "Stopping cnid_metad" + start-stop-daemon --stop --quiet --exec /usr/sbin/cnid_metad + eend $? + fi +} diff --git a/packages/netatalk/netatalk-2.0.3/.mtn2git_empty b/packages/netatalk/netatalk-2.0.3/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/netatalk/netatalk-2.0.3/.mtn2git_empty diff --git a/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-db43.patch b/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-db43.patch new file mode 100644 index 0000000000..93d3e4b9ea --- /dev/null +++ b/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-db43.patch @@ -0,0 +1,32 @@ +Index: netatalk-2.0.3/bin/cnid/cnid_index.c +=================================================================== +--- netatalk-2.0.3.orig/bin/cnid/cnid_index.c ++++ netatalk-2.0.3/bin/cnid/cnid_index.c +@@ -274,7 +274,11 @@ static int dbif_count(const int dbi, u_i + DB_BTREE_STAT *sp; + DB *db = db_table[dbi].db; + ++#if DB_VERSION_MAJOR > 4 || ( DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 3 ) ++ ret = db->stat(db, db_txn, &sp, 0); ++#else + ret = db->stat(db, &sp, 0); ++#endif + + if (ret) { + LOG(log_error, logtype_cnid, "error getting stat infotmation on database: %s", db_strerror(errno)); +Index: netatalk-2.0.3/etc/cnid_dbd/dbif.c +=================================================================== +--- netatalk-2.0.3.orig/etc/cnid_dbd/dbif.c ++++ netatalk-2.0.3/etc/cnid_dbd/dbif.c +@@ -514,7 +514,11 @@ int dbif_count(const int dbi, u_int32_t + DB_BTREE_STAT *sp; + DB *db = db_table[dbi].db; + ++#if DB_VERSION_MAJOR > 4 || ( DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 3 ) ++ ret = db->stat(db, db_txn, &sp, 0); ++#else + ret = db->stat(db, &sp, 0); ++#endif + + if (ret) { + LOG(log_error, logtype_cnid, "error getting stat infotmation on database: %s", db_strerror(errno)); diff --git a/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-newerdb.patch b/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-newerdb.patch new file mode 100644 index 0000000000..f64c8cf5eb --- /dev/null +++ b/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-newerdb.patch @@ -0,0 +1,28 @@ +Index: netatalk-2.0.3/macros/db3-check.m4 +=================================================================== +--- netatalk-2.0.3.orig/macros/db3-check.m4 ++++ netatalk-2.0.3/macros/db3-check.m4 +@@ -115,6 +115,14 @@ int main(void) { + AC_DEFUN([NETATALK_BERKELEY_LINK], + [ + atalk_cv_lib_db=no ++NETATALK_BDB_LINK_TRY(atalk_cv_db_db_4_dot_4,[-ldb-4.4]) ++NETATALK_BDB_LINK_TRY(atalk_cv_db_db44,[-ldb44]) ++NETATALK_BDB_LINK_TRY(atalk_cv_db_db_44,[-ldb-44]) ++NETATALK_BDB_LINK_TRY(atalk_cv_db_db_4_4,[-ldb-4-4]) ++NETATALK_BDB_LINK_TRY(atalk_cv_db_db_4_dot_3,[-ldb-4.3]) ++NETATALK_BDB_LINK_TRY(atalk_cv_db_db43,[-ldb43]) ++NETATALK_BDB_LINK_TRY(atalk_cv_db_db_43,[-ldb-43]) ++NETATALK_BDB_LINK_TRY(atalk_cv_db_db_4_3,[-ldb-4-3]) + NETATALK_BDB_LINK_TRY(atalk_cv_db_db_4_dot_2,[-ldb-4.2]) + NETATALK_BDB_LINK_TRY(atalk_cv_db_db42,[-ldb42]) + NETATALK_BDB_LINK_TRY(atalk_cv_db_db_42,[-ldb-42]) +@@ -134,7 +142,7 @@ AC_DEFUN([AC_PATH_BDB], + trybdbdir="" + dobdbsearch=yes + bdb_search_dirs="/usr/local/include /usr/include" +- search_subdirs="/db4.2 /db42 /db4.1 /db41 /db4 /" ++ search_subdirs="/db4.4 /db44 /db4.3 /db43 /db4.2 /db42 /db4.1 /db41 /db4 /" + + dnl required BDB version + DB_MAJOR_REQ=4 diff --git a/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-setXid.patch b/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-setXid.patch new file mode 100644 index 0000000000..70170c134d --- /dev/null +++ b/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-setXid.patch @@ -0,0 +1,14 @@ +Index: netatalk-2.0.3/bin/afppasswd/Makefile.am +=================================================================== +--- netatalk-2.0.3.orig/bin/afppasswd/Makefile.am ++++ netatalk-2.0.3/bin/afppasswd/Makefile.am +@@ -12,7 +12,8 @@ afppasswd_SOURCES = afppasswd.c + afppasswd_LDADD = $(top_builddir)/libatalk/libatalk.la @SSL_LIBS@ + + CFLAGS = @CFLAGS@ @SSL_CFLAGS@ -I$(top_srcdir)/sys \ +- -D_PATH_AFPDPWFILE=\"$(pkgconfdir)/afppasswd\" ++ -D_PATH_AFPDPWFILE=\"$(pkgconfdir)/afppasswd\" \ ++ @BINDNOW_FLAGS@ + + install-exec-hook: + if USE_DHX diff --git a/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-xfs.patch b/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-xfs.patch new file mode 100644 index 0000000000..e91ebcebd2 --- /dev/null +++ b/packages/netatalk/netatalk-2.0.3/netatalk-2.0.3-xfs.patch @@ -0,0 +1,22 @@ +Index: netatalk-2.0.3/configure.in +=================================================================== +--- netatalk-2.0.3.orig/configure.in ++++ netatalk-2.0.3/configure.in +@@ -694,12 +694,16 @@ fi + # AC_MSG_RESULT([enabling quotactl wrapper]) + # ) + ++AC_ARG_WITH([xfs], ++ AS_HELP_STRING([--without-xfs], [Build without XFS filesystem quota support])) ++ ++if test "x$with_xfs" != "xno"; then + # For quotas on Linux XFS filesystems + AC_CHECK_HEADERS(linux/xqm.h linux/xfs_fs.h) + AC_CHECK_HEADERS(xfs/libxfs.h xfs/xqm.h xfs/xfs_fs.h) + # For linux > 2.5.56 + AC_CHECK_HEADERS(linux/dqblk_xfs.h) +- ++fi + + dnl ----- as far as I can tell, dbtob always does the wrong thing + dnl ----- on every single version of linux I've ever played with. diff --git a/packages/netatalk/netatalk_2.0.3.bb b/packages/netatalk/netatalk_2.0.3.bb new file mode 100644 index 0000000000..74cfd84042 --- /dev/null +++ b/packages/netatalk/netatalk_2.0.3.bb @@ -0,0 +1,39 @@ +DESCRIPTION = "Appletalk protocol suite" +SECTION = "net" +PR = "r0" +LICENSE = "GPL" + +DEPENDS = "cups db openssl libpam" + +SRC_URI = "http://ovh.dl.sourceforge.net/sourceforge/netatalk/netatalk-${PV}.tar.gz \ + file://netatalk-2.0.3-db43.patch;patch=1 \ + file://netatalk-2.0.3-newerdb.patch;patch=1 \ + file://netatalk-2.0.3-xfs.patch;patch=1 \ + file://init \ + " +INITSCRIPT_NAME = "atalk" +INITSCRIPT_PARAMS = "defaults 65" + +inherit autotools update-rc.d + +do_configure () { + autoreconf + ac_cv_header_rpcsvc_rquota_h=no LDFLAGS="-lpthread -L${STAGING_DIR}/${TARGET_SYS}/lib" ./configure \ + --build=${BUILD_SYS} \ + --host=${HOST_SYS} \ + --target=${TARGET_SYS} \ + --prefix=${prefix} \ + --with-bdb=${STAGING_DIR}/${TARGET_SYS} \ + --with-ssl-dir=${STAGING_DIR}/${TARGET_SYS} \ + --without-shadow \ + --sysconfdir=${sysconfdir} \ + --disable-nls \ + --disable-static \ + --with-pam \ + --mandir=${mandir} + cp ${STAGING_DIR}/${BUILD_SYS}/bin/${TARGET_SYS}-libtool ./${TARGET_SYS}-libtool +} + +do_install_append() { + install -D -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/atalk +} diff --git a/packages/tzcode/tzcode-native_2007c.bb b/packages/tzcode/tzcode-native_2007c.bb index 126658bd39..aed4253e81 100644 --- a/packages/tzcode/tzcode-native_2007c.bb +++ b/packages/tzcode/tzcode-native_2007c.bb @@ -1,6 +1,6 @@ DESCRIPTION = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect" -PR = "r1" +PR = "r2" SRC_URI = "ftp://elsie.nci.nih.gov/pub/tzcode${PV}.tar.gz \ ftp://elsie.nci.nih.gov/pub/tzdata${PV}.tar.gz" @@ -10,9 +10,10 @@ S = "${WORKDIR}" inherit native do_stage () { - install -m 755 zic ${STAGING_BINDIR_NATIVE} - install -m 755 zdump ${STAGING_BINDIR_NATIVE} - install -m 755 tzselect ${STAGING_BINDIR_NATIVE} + install -d ${STAGING_BINDIR_NATIVE} + install -m 755 zic ${STAGING_BINDIR_NATIVE}/ + install -m 755 zdump ${STAGING_BINDIR_NATIVE}/ + install -m 755 tzselect ${STAGING_BINDIR_NATIVE}/ } do_install () { diff --git a/packages/uboot-utils/uboot-utils_1.1.2.bb b/packages/uboot-utils/uboot-utils_1.1.2.bb index 292c97f134..621a55c964 100644 --- a/packages/uboot-utils/uboot-utils_1.1.2.bb +++ b/packages/uboot-utils/uboot-utils_1.1.2.bb @@ -3,7 +3,7 @@ SECTION = "bootloaders" PRIORITY = "optional" LICENSE = "GPL" DEPENDS = "mtd-utils" -PR = "r3" +PR = "r4" SRC_URI = "${SOURCEFORGE_MIRROR}/u-boot/u-boot-${PV}.tar.bz2 \ file://fw_env.c.patch;patch=1 \ @@ -30,7 +30,8 @@ do_compile () { # install mkimage for the kernel makefile do_stage() { - install -m 755 ${S}/tools/mkimage ${STAGING_BINDIR_NATIVE} + install -d ${STAGING_BINDIR_NATIVE} + install -m 755 ${S}/tools/mkimage ${STAGING_BINDIR_NATIVE}/ } do_install () { diff --git a/packages/uboot/u-boot.inc b/packages/uboot/u-boot.inc index 3b26e55f1b..d9b2f7b7c9 100644 --- a/packages/uboot/u-boot.inc +++ b/packages/uboot/u-boot.inc @@ -26,5 +26,6 @@ do_deploy[dirs] = "${S}" addtask deploy before do_build after do_compile do_stage() { - install -m755 tools/mkimage ${STAGING_BINDIR_NATIVE} + install -d ${STAGING_BINDIR_NATIVE} + install -m755 tools/mkimage ${STAGING_BINDIR_NATIVE}/ } |