From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] Analysis of build failures
Date: Mon, 11 Nov 2013 11:39:41 +0100 [thread overview]
Message-ID: <20131111113941.4247120a@skate> (raw)
In-Reply-To: <20131111102050.GP4581@tarshish>
Dear Baruch Siach,
On Mon, 11 Nov 2013 12:20:50 +0200, Baruch Siach wrote:
> > > Why do we need binutils on target?
> >
> > $ git grep "select BR2_PACKAGE_BINUTILS"
> > package/dropwatch/Config.in: select BR2_PACKAGE_BINUTILS
> > package/oprofile/Config.in: select BR2_PACKAGE_BINUTILS
> >
> > So we need it for dropwatch and oprofile. In fact, what is needed is
> > not the full binutils (i.e the binutils programs), but the libbfd
> > library which is part of the binutils tarball.
>
> This is strange. More than half of xtensa autobuilds used to fail on target
> binutils before Chris' obstack fix. Does this mean that all failing configs
> had dropwatch or oprofile enabled?
Or that they had BR2_PACKAGE_BINUTILS enabled itself. So I took my poor
SQL knowledge and came up with the following query to answer your
question:
select results.id,status,builddate,identifier,arch,reason,results_config.name,results_config.value
from results
inner join results_config on results.id=results_config.resultid
where
results.arch='xtensa' and
results.reason like 'binutils%' and
results.builddate >= '2013-10-01' and
(results_config.name='BR2_PACKAGE_BINUTILS' or results_config.name='BR2_PACKAGE_DROPWATCH' or results_config.name='BR2_PACKAGE_OPROFILE');
which gives the list of xtensa build results that failed on binutils,
since October 1st, and for each of those builds, give the value of the
binutils, dropwatch and oprofile options. So in the below table, you
have 3 consecutive lines for a given build, each of those 3 lines
corresponding to dropwatch,oprofile and binutils. As you can see, for
each of those builds, BR2_PACKAGE_BINUTILS was always set to 'y', and
sometimes either or both of oprofile and dropwatch were also enabled.
I kind of like the type of questions I can now answer by having the
full set of config options for each build part of the SQL database :-)
+-------+--------+---------------------+------------------------------------------+--------+-----------------+-----------------------+-------+
| id | status | builddate | identifier | arch | reason | name | value |
+-------+--------+---------------------+------------------------------------------+--------+-----------------+-----------------------+-------+
| 71059 | 1 | 2013-10-01 20:48:10 | 0cd166469449b2fa224277a1be6997af8ff2488d | xtensa | binutils-2.21.1 | BR2_PACKAGE_DROPWATCH | |
| 71059 | 1 | 2013-10-01 20:48:10 | 0cd166469449b2fa224277a1be6997af8ff2488d | xtensa | binutils-2.21.1 | BR2_PACKAGE_OPROFILE | y |
| 71059 | 1 | 2013-10-01 20:48:10 | 0cd166469449b2fa224277a1be6997af8ff2488d | xtensa | binutils-2.21.1 | BR2_PACKAGE_BINUTILS | y |
| 71076 | 1 | 2013-10-01 23:09:35 | 2cfd80795aa9c7556e572f8d344c4f512c80f232 | xtensa | binutils-2.21.1 | BR2_PACKAGE_DROPWATCH | |
| 71076 | 1 | 2013-10-01 23:09:35 | 2cfd80795aa9c7556e572f8d344c4f512c80f232 | xtensa | binutils-2.21.1 | BR2_PACKAGE_OPROFILE | y |
| 71076 | 1 | 2013-10-01 23:09:35 | 2cfd80795aa9c7556e572f8d344c4f512c80f232 | xtensa | binutils-2.21.1 | BR2_PACKAGE_BINUTILS | y |
| 71161 | 1 | 2013-10-02 19:13:40 | 8244788b518211947cd850e97ab80c43426a07a3 | xtensa | binutils-2.21.1 | BR2_PACKAGE_DROPWATCH | |
| 71161 | 1 | 2013-10-02 19:13:40 | 8244788b518211947cd850e97ab80c43426a07a3 | xtensa | binutils-2.21.1 | BR2_PACKAGE_OPROFILE | y |
| 71161 | 1 | 2013-10-02 19:13:40 | 8244788b518211947cd850e97ab80c43426a07a3 | xtensa | binutils-2.21.1 | BR2_PACKAGE_BINUTILS | y |
| 71218 | 1 | 2013-10-03 03:40:15 | 6c0cb311739fb0ea3b835c946090296bf3c8eb5f | xtensa | binutils-2.21.1 | BR2_PACKAGE_DROPWATCH | |
| 71218 | 1 | 2013-10-03 03:40:15 | 6c0cb311739fb0ea3b835c946090296bf3c8eb5f | xtensa | binutils-2.21.1 | BR2_PACKAGE_OPROFILE | y |
| 71218 | 1 | 2013-10-03 03:40:15 | 6c0cb311739fb0ea3b835c946090296bf3c8eb5f | xtensa | binutils-2.21.1 | BR2_PACKAGE_BINUTILS | y |
| 71494 | 1 | 2013-10-05 02:37:45 | cdd334ae490646c6367315668fff68feee03a4a2 | xtensa | binutils-2.21.1 | BR2_PACKAGE_DROPWATCH | y |
| 71494 | 1 | 2013-10-05 02:37:45 | cdd334ae490646c6367315668fff68feee03a4a2 | xtensa | binutils-2.21.1 | BR2_PACKAGE_OPROFILE | |
| 71494 | 1 | 2013-10-05 02:37:45 | cdd334ae490646c6367315668fff68feee03a4a2 | xtensa | binutils-2.21.1 | BR2_PACKAGE_BINUTILS | y |
| 71534 | 1 | 2013-10-05 10:12:54 | 9d6f624cd22fcf2cf113dfd3a3097c88f5e77612 | xtensa | binutils-2.21.1 | BR2_PACKAGE_DROPWATCH | |
| 71534 | 1 | 2013-10-05 10:12:54 | 9d6f624cd22fcf2cf113dfd3a3097c88f5e77612 | xtensa | binutils-2.21.1 | BR2_PACKAGE_OPROFILE | y |
| 71534 | 1 | 2013-10-05 10:12:54 | 9d6f624cd22fcf2cf113dfd3a3097c88f5e77612 | xtensa | binutils-2.21.1 | BR2_PACKAGE_BINUTILS | y |
| 71606 | 1 | 2013-10-05 20:32:09 | 436f1f897efb09bfc910b88b7396deaa9c67e158 | xtensa | binutils-2.21.1 | BR2_PACKAGE_DROPWATCH | y |
| 71606 | 1 | 2013-10-05 20:32:09 | 436f1f897efb09bfc910b88b7396deaa9c67e158 | xtensa | binutils-2.21.1 | BR2_PACKAGE_OPROFILE | |
| 71606 | 1 | 2013-10-05 20:32:09 | 436f1f897efb09bfc910b88b7396deaa9c67e158 | xtensa | binutils-2.21.1 | BR2_PACKAGE_BINUTILS | y |
| 71831 | 1 | 2013-10-07 16:06:10 | a6f8c67f60b13bab89c8bd2ca88d3407eead2b61 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 71831 | 1 | 2013-10-07 16:06:10 | a6f8c67f60b13bab89c8bd2ca88d3407eead2b61 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 71831 | 1 | 2013-10-07 16:06:10 | a6f8c67f60b13bab89c8bd2ca88d3407eead2b61 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 71926 | 1 | 2013-10-08 09:12:43 | b46524626cab681167253d68c45f0eed091a347c | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 71926 | 1 | 2013-10-08 09:12:43 | b46524626cab681167253d68c45f0eed091a347c | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 71926 | 1 | 2013-10-08 09:12:43 | b46524626cab681167253d68c45f0eed091a347c | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 72116 | 1 | 2013-10-09 14:52:26 | 98f65001a4a1dc1382630c232ffb43514f7482c5 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 72116 | 1 | 2013-10-09 14:52:26 | 98f65001a4a1dc1382630c232ffb43514f7482c5 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 72116 | 1 | 2013-10-09 14:52:26 | 98f65001a4a1dc1382630c232ffb43514f7482c5 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 72123 | 1 | 2013-10-09 15:40:15 | 45d1546b5dab74dc9e9a52d6c9ad1f3f2957eae4 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 72123 | 1 | 2013-10-09 15:40:15 | 45d1546b5dab74dc9e9a52d6c9ad1f3f2957eae4 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 72123 | 1 | 2013-10-09 15:40:15 | 45d1546b5dab74dc9e9a52d6c9ad1f3f2957eae4 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 72140 | 1 | 2013-10-09 18:32:06 | d90aa26a8ac309694f5dbf3fc546f6d6c9af434c | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 72140 | 1 | 2013-10-09 18:32:06 | d90aa26a8ac309694f5dbf3fc546f6d6c9af434c | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 72140 | 1 | 2013-10-09 18:32:06 | d90aa26a8ac309694f5dbf3fc546f6d6c9af434c | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 72148 | 1 | 2013-10-09 19:15:32 | f31b2093399685498ee92873517bfa65ea366860 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 72148 | 1 | 2013-10-09 19:15:32 | f31b2093399685498ee92873517bfa65ea366860 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 72148 | 1 | 2013-10-09 19:15:32 | f31b2093399685498ee92873517bfa65ea366860 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 72295 | 1 | 2013-10-10 21:50:50 | 38a1dea49373fd4f4da95621f716f8c9324e0d0c | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 72295 | 1 | 2013-10-10 21:50:50 | 38a1dea49373fd4f4da95621f716f8c9324e0d0c | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 72295 | 1 | 2013-10-10 21:50:50 | 38a1dea49373fd4f4da95621f716f8c9324e0d0c | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 72404 | 1 | 2013-10-11 18:52:26 | 6d5754d10af24d8e9528878548be1d4f25a1f730 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 72404 | 1 | 2013-10-11 18:52:26 | 6d5754d10af24d8e9528878548be1d4f25a1f730 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 72404 | 1 | 2013-10-11 18:52:26 | 6d5754d10af24d8e9528878548be1d4f25a1f730 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 72540 | 1 | 2013-10-12 18:07:08 | bf8614dbfd930f0fd1678cf97da8cd125b0502c6 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 72540 | 1 | 2013-10-12 18:07:08 | bf8614dbfd930f0fd1678cf97da8cd125b0502c6 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 72540 | 1 | 2013-10-12 18:07:08 | bf8614dbfd930f0fd1678cf97da8cd125b0502c6 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 72691 | 1 | 2013-10-13 19:50:44 | d3ce520b2ee273c7dde62ec8527ba9ac9ed11a9e | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 72691 | 1 | 2013-10-13 19:50:44 | d3ce520b2ee273c7dde62ec8527ba9ac9ed11a9e | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 72691 | 1 | 2013-10-13 19:50:44 | d3ce520b2ee273c7dde62ec8527ba9ac9ed11a9e | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 72889 | 1 | 2013-10-15 00:03:02 | 02c9b14ab7cd784fb09b9bc02ade6238b3761588 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 72889 | 1 | 2013-10-15 00:03:02 | 02c9b14ab7cd784fb09b9bc02ade6238b3761588 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 72889 | 1 | 2013-10-15 00:03:02 | 02c9b14ab7cd784fb09b9bc02ade6238b3761588 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 72944 | 1 | 2013-10-15 12:30:11 | 8c20156bb4d8be909ae1367e1e8e043867d477ae | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 72944 | 1 | 2013-10-15 12:30:11 | 8c20156bb4d8be909ae1367e1e8e043867d477ae | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 72944 | 1 | 2013-10-15 12:30:11 | 8c20156bb4d8be909ae1367e1e8e043867d477ae | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 72990 | 1 | 2013-10-15 18:36:49 | 1fa265c9cdda8c79cf3ccf9fa9ca6cfaff160bd8 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 72990 | 1 | 2013-10-15 18:36:49 | 1fa265c9cdda8c79cf3ccf9fa9ca6cfaff160bd8 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 72990 | 1 | 2013-10-15 18:36:49 | 1fa265c9cdda8c79cf3ccf9fa9ca6cfaff160bd8 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 73068 | 1 | 2013-10-16 11:21:00 | 52b30beeec9af53dcaee98c1e6ab430b8328f7a3 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 73068 | 1 | 2013-10-16 11:21:00 | 52b30beeec9af53dcaee98c1e6ab430b8328f7a3 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 73068 | 1 | 2013-10-16 11:21:00 | 52b30beeec9af53dcaee98c1e6ab430b8328f7a3 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 73157 | 1 | 2013-10-16 21:39:23 | 3af486e2291d5f18ce6c22404a1f7e1e6d8546a1 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 73157 | 1 | 2013-10-16 21:39:23 | 3af486e2291d5f18ce6c22404a1f7e1e6d8546a1 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 73157 | 1 | 2013-10-16 21:39:23 | 3af486e2291d5f18ce6c22404a1f7e1e6d8546a1 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 73248 | 1 | 2013-10-17 10:41:08 | cfbbae2f39385582fcd4dcf3d7a6f8d065208ff3 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 73248 | 1 | 2013-10-17 10:41:08 | cfbbae2f39385582fcd4dcf3d7a6f8d065208ff3 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 73248 | 1 | 2013-10-17 10:41:08 | cfbbae2f39385582fcd4dcf3d7a6f8d065208ff3 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 73490 | 1 | 2013-10-18 20:35:00 | 63a8f4d34ef97a7ac1ec0fce4d6425827f4de5fd | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 73490 | 1 | 2013-10-18 20:35:00 | 63a8f4d34ef97a7ac1ec0fce4d6425827f4de5fd | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 73490 | 1 | 2013-10-18 20:35:00 | 63a8f4d34ef97a7ac1ec0fce4d6425827f4de5fd | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 73566 | 1 | 2013-10-19 06:34:07 | df47ef18beab5ea00d880ef25922e688fe93ca88 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 73566 | 1 | 2013-10-19 06:34:07 | df47ef18beab5ea00d880ef25922e688fe93ca88 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 73566 | 1 | 2013-10-19 06:34:07 | df47ef18beab5ea00d880ef25922e688fe93ca88 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 73697 | 1 | 2013-10-20 03:52:11 | 615495c9a3d55e2c3f46d3cc86678453ecd95ec6 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 73697 | 1 | 2013-10-20 03:52:11 | 615495c9a3d55e2c3f46d3cc86678453ecd95ec6 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 73697 | 1 | 2013-10-20 03:52:11 | 615495c9a3d55e2c3f46d3cc86678453ecd95ec6 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 73732 | 1 | 2013-10-20 09:11:20 | 4a73f7380d493359ca1593a5c6a5cc8d11fb7cf7 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 73732 | 1 | 2013-10-20 09:11:20 | 4a73f7380d493359ca1593a5c6a5cc8d11fb7cf7 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 73732 | 1 | 2013-10-20 09:11:20 | 4a73f7380d493359ca1593a5c6a5cc8d11fb7cf7 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 73812 | 1 | 2013-10-20 21:59:28 | 1fefa8b4fc1dc22e3667b25b0d93d3f30424629f | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 73812 | 1 | 2013-10-20 21:59:28 | 1fefa8b4fc1dc22e3667b25b0d93d3f30424629f | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 73812 | 1 | 2013-10-20 21:59:28 | 1fefa8b4fc1dc22e3667b25b0d93d3f30424629f | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 73979 | 1 | 2013-10-22 01:58:24 | 3318ee1e074b9e9fca9e2815e220313cc9a00021 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 73979 | 1 | 2013-10-22 01:58:24 | 3318ee1e074b9e9fca9e2815e220313cc9a00021 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 73979 | 1 | 2013-10-22 01:58:24 | 3318ee1e074b9e9fca9e2815e220313cc9a00021 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 74121 | 1 | 2013-10-22 23:34:05 | c9581efea42eb4a6d14952d616ae2cf049c3ed47 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 74121 | 1 | 2013-10-22 23:34:05 | c9581efea42eb4a6d14952d616ae2cf049c3ed47 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 74121 | 1 | 2013-10-22 23:34:05 | c9581efea42eb4a6d14952d616ae2cf049c3ed47 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 74141 | 1 | 2013-10-23 04:03:55 | fdc5d439987d988cb14f58726443f2bb41d0b1cb | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 74141 | 1 | 2013-10-23 04:03:55 | fdc5d439987d988cb14f58726443f2bb41d0b1cb | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 74141 | 1 | 2013-10-23 04:03:55 | fdc5d439987d988cb14f58726443f2bb41d0b1cb | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 74322 | 1 | 2013-10-24 13:02:54 | 7b0798f139e81b054e72c08cc16ff337bbe36a2b | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 74322 | 1 | 2013-10-24 13:02:54 | 7b0798f139e81b054e72c08cc16ff337bbe36a2b | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 74322 | 1 | 2013-10-24 13:02:54 | 7b0798f139e81b054e72c08cc16ff337bbe36a2b | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 74386 | 1 | 2013-10-24 22:30:39 | 7806239e9e9161f03d3e658dcf18090b21eb8e65 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 74386 | 1 | 2013-10-24 22:30:39 | 7806239e9e9161f03d3e658dcf18090b21eb8e65 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 74386 | 1 | 2013-10-24 22:30:39 | 7806239e9e9161f03d3e658dcf18090b21eb8e65 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 74420 | 1 | 2013-10-25 06:19:41 | f3f9fedfc92b125fa2dbe10c5e3f72db3fdfb7a9 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 74420 | 1 | 2013-10-25 06:19:41 | f3f9fedfc92b125fa2dbe10c5e3f72db3fdfb7a9 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 74420 | 1 | 2013-10-25 06:19:41 | f3f9fedfc92b125fa2dbe10c5e3f72db3fdfb7a9 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 74424 | 1 | 2013-10-25 07:05:26 | 687a233c574de8c95ddb9187b8fdd72be0d07902 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 74424 | 1 | 2013-10-25 07:05:26 | 687a233c574de8c95ddb9187b8fdd72be0d07902 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 74424 | 1 | 2013-10-25 07:05:26 | 687a233c574de8c95ddb9187b8fdd72be0d07902 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 74469 | 1 | 2013-10-25 15:38:14 | d232d06b5ab9a7b1c5a4d76a79b3794cde8e2274 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 74469 | 1 | 2013-10-25 15:38:14 | d232d06b5ab9a7b1c5a4d76a79b3794cde8e2274 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 74469 | 1 | 2013-10-25 15:38:14 | d232d06b5ab9a7b1c5a4d76a79b3794cde8e2274 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 74625 | 1 | 2013-10-26 21:12:23 | 9782922ab3fbda9471043d08efb88da1fcb1024a | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 74625 | 1 | 2013-10-26 21:12:23 | 9782922ab3fbda9471043d08efb88da1fcb1024a | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 74625 | 1 | 2013-10-26 21:12:23 | 9782922ab3fbda9471043d08efb88da1fcb1024a | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 74984 | 1 | 2013-10-30 01:22:40 | 39ac33c0e325d5e8009337f0cfc83dc364e9c463 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 74984 | 1 | 2013-10-30 01:22:40 | 39ac33c0e325d5e8009337f0cfc83dc364e9c463 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 74984 | 1 | 2013-10-30 01:22:40 | 39ac33c0e325d5e8009337f0cfc83dc364e9c463 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 75346 | 1 | 2013-11-01 19:16:34 | 6f209b4e3e6eade884eb37c5c761b42e83e3da74 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 75346 | 1 | 2013-11-01 19:16:34 | 6f209b4e3e6eade884eb37c5c761b42e83e3da74 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 75346 | 1 | 2013-11-01 19:16:34 | 6f209b4e3e6eade884eb37c5c761b42e83e3da74 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 75411 | 1 | 2013-11-02 04:36:54 | d16d73a716ca0f3e6c16fe23ef748707495eb787 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 75411 | 1 | 2013-11-02 04:36:54 | d16d73a716ca0f3e6c16fe23ef748707495eb787 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 75411 | 1 | 2013-11-02 04:36:54 | d16d73a716ca0f3e6c16fe23ef748707495eb787 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 75489 | 1 | 2013-11-02 19:51:45 | 32b011100f96d3462d98b365591bf2422f4d3ec3 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 75489 | 1 | 2013-11-02 19:51:45 | 32b011100f96d3462d98b365591bf2422f4d3ec3 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 75489 | 1 | 2013-11-02 19:51:45 | 32b011100f96d3462d98b365591bf2422f4d3ec3 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 75497 | 1 | 2013-11-02 21:18:31 | 3939930a693ab7f244ed81d295898fad15f60700 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 75497 | 1 | 2013-11-02 21:18:31 | 3939930a693ab7f244ed81d295898fad15f60700 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 75497 | 1 | 2013-11-02 21:18:31 | 3939930a693ab7f244ed81d295898fad15f60700 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 75660 | 1 | 2013-11-03 23:41:57 | e514a5122b2524453dff8d5617be4b8de65c544c | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 75660 | 1 | 2013-11-03 23:41:57 | e514a5122b2524453dff8d5617be4b8de65c544c | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 75660 | 1 | 2013-11-03 23:41:57 | e514a5122b2524453dff8d5617be4b8de65c544c | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 75689 | 1 | 2013-11-04 04:04:59 | 02796a47a03fc36ce1dfa476a6145be47f283a18 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 75689 | 1 | 2013-11-04 04:04:59 | 02796a47a03fc36ce1dfa476a6145be47f283a18 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 75689 | 1 | 2013-11-04 04:04:59 | 02796a47a03fc36ce1dfa476a6145be47f283a18 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 75704 | 1 | 2013-11-04 06:42:55 | f30943e20af19b5c7eba642febc8018c2a60a9fe | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 75704 | 1 | 2013-11-04 06:42:55 | f30943e20af19b5c7eba642febc8018c2a60a9fe | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 75704 | 1 | 2013-11-04 06:42:55 | f30943e20af19b5c7eba642febc8018c2a60a9fe | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 75758 | 1 | 2013-11-04 16:29:13 | 7dafb56700cb86bd4c20e397cd6e6d568229be2d | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 75758 | 1 | 2013-11-04 16:29:13 | 7dafb56700cb86bd4c20e397cd6e6d568229be2d | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 75758 | 1 | 2013-11-04 16:29:13 | 7dafb56700cb86bd4c20e397cd6e6d568229be2d | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 76035 | 1 | 2013-11-07 01:02:15 | 1bb18ff3037e5b73e7b504e14bfd396d42917c5b | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 76035 | 1 | 2013-11-07 01:02:15 | 1bb18ff3037e5b73e7b504e14bfd396d42917c5b | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 76035 | 1 | 2013-11-07 01:02:15 | 1bb18ff3037e5b73e7b504e14bfd396d42917c5b | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 76084 | 1 | 2013-11-07 13:35:59 | 6a5f5cbf6e3f59f7563b6f7d0f59a56a2fdbe8dc | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 76084 | 1 | 2013-11-07 13:35:59 | 6a5f5cbf6e3f59f7563b6f7d0f59a56a2fdbe8dc | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 76084 | 1 | 2013-11-07 13:35:59 | 6a5f5cbf6e3f59f7563b6f7d0f59a56a2fdbe8dc | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 76200 | 1 | 2013-11-08 13:43:54 | 2d3d255b2d3ae1456a377dbc03f695b7adf010e8 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | y |
| 76200 | 1 | 2013-11-08 13:43:54 | 2d3d255b2d3ae1456a377dbc03f695b7adf010e8 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 76200 | 1 | 2013-11-08 13:43:54 | 2d3d255b2d3ae1456a377dbc03f695b7adf010e8 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 76219 | 1 | 2013-11-08 16:54:15 | 11de6f161585c12148c1b2b4fc8ab830183edfe9 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 76219 | 1 | 2013-11-08 16:54:15 | 11de6f161585c12148c1b2b4fc8ab830183edfe9 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | y |
| 76219 | 1 | 2013-11-08 16:54:15 | 11de6f161585c12148c1b2b4fc8ab830183edfe9 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 76361 | 1 | 2013-11-09 18:53:59 | a476260a0fff7ae7502e858b30943d9067fb1214 | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 76361 | 1 | 2013-11-09 18:53:59 | a476260a0fff7ae7502e858b30943d9067fb1214 | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 76361 | 1 | 2013-11-09 18:53:59 | a476260a0fff7ae7502e858b30943d9067fb1214 | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
| 76463 | 1 | 2013-11-10 14:13:26 | 4f6f05293c61906b169ddfcd9a239cc9393b626e | xtensa | binutils-2.22 | BR2_PACKAGE_DROPWATCH | |
| 76463 | 1 | 2013-11-10 14:13:26 | 4f6f05293c61906b169ddfcd9a239cc9393b626e | xtensa | binutils-2.22 | BR2_PACKAGE_OPROFILE | |
| 76463 | 1 | 2013-11-10 14:13:26 | 4f6f05293c61906b169ddfcd9a239cc9393b626e | xtensa | binutils-2.22 | BR2_PACKAGE_BINUTILS | y |
+-------+--------+---------------------+------------------------------------------+--------+-----------------+-----------------------+-------+
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
next prev parent reply other threads:[~2013-11-11 10:39 UTC|newest]
Thread overview: 420+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-09 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2013-11-08 Thomas Petazzoni
2013-11-09 14:53 ` Will Newton
2013-11-09 15:42 ` Thomas Petazzoni
2013-11-09 18:15 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2013-11-09 20:46 ` Gustavo Zacarias
2013-11-10 6:25 ` Baruch Siach
2013-11-10 8:43 ` Thomas Petazzoni
2013-11-10 10:32 ` Baruch Siach
2013-11-10 15:21 ` Thomas Petazzoni
2013-11-10 10:32 ` Simon Dawson
2013-11-10 10:46 ` Thomas Petazzoni
2013-11-10 11:21 ` Simon Dawson
2013-11-10 11:36 ` Thomas Petazzoni
2013-11-10 22:56 ` Peter Korsgaard
2013-11-10 10:57 ` Gustavo Zacarias
2013-11-10 11:07 ` Thomas Petazzoni
2013-11-11 5:33 ` Chris Zankel
2013-11-11 9:58 ` Thomas Petazzoni
2013-11-11 10:10 ` Baruch Siach
2013-11-11 10:15 ` Thomas Petazzoni
2013-11-11 10:20 ` Baruch Siach
2013-11-11 10:39 ` Thomas Petazzoni [this message]
2013-11-11 9:14 ` Fatih Aşıcı
2013-11-11 10:09 ` Thomas Petazzoni
2013-11-11 12:26 ` Fatih Aşıcı
2013-11-11 9:30 ` Gustavo Zacarias
[not found] ` <5280A0D3.1080605@imgtec.com>
2013-11-11 9:21 ` Markos Chandras
2013-11-11 9:46 ` Peter Korsgaard
2013-11-11 9:49 ` Markos Chandras
2013-11-11 10:01 ` Will Newton
2013-11-11 10:17 ` Thomas Petazzoni
2013-11-11 10:25 ` Will Newton
2013-11-11 10:43 ` Thomas Petazzoni
2013-11-11 11:25 ` Ezequiel García
2013-11-11 11:27 ` Peter Korsgaard
2013-11-11 11:45 ` Thomas Petazzoni
2013-11-11 22:29 ` [Buildroot] [PATCH] tstools: fix build (link) error Tzu-Jung Lee
2013-11-12 22:20 ` Peter Korsgaard
[not found] <mailman.19.1455278403.3863.buildroot@busybox.net>
2016-02-13 1:04 ` [Buildroot] Analysis of build failures Ricardo Martincoski
-- strict thread matches above, loose matches on Subject: below --
2016-02-12 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2016-02-11 Thomas Petazzoni
2016-02-12 9:45 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2016-02-12 11:54 ` Martin Bark
2016-02-15 13:15 ` Martin Bark
2016-02-12 18:01 ` Bernd Kuhls
2016-02-12 18:29 ` Bernd Kuhls
2016-02-12 19:26 ` Romain Naour
2016-02-12 20:35 ` Thomas Petazzoni
2016-02-12 20:52 ` Romain Naour
2016-01-23 12:33 Ricardo Martincoski
2016-01-23 12:55 ` Thomas Petazzoni
2016-01-23 13:03 ` Thomas De Schampheleire
2016-01-23 13:56 ` Ricardo Martincoski
2016-01-23 14:26 ` Thomas De Schampheleire
2016-01-23 14:42 ` Thomas Petazzoni
2016-01-23 15:16 ` Ricardo Martincoski
2016-01-23 15:58 ` Thomas Petazzoni
2016-01-23 16:07 ` Thomas De Schampheleire
2016-01-23 17:14 ` Ricardo Martincoski
2016-01-23 20:48 ` Thomas Petazzoni
2016-01-22 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2016-01-21 Thomas Petazzoni
2016-01-22 9:29 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2016-01-22 9:36 ` Thomas De Schampheleire
2016-01-22 11:26 ` Gustavo Zacarias
2016-01-22 18:38 ` Waldemar Brodkorb
2016-01-22 23:19 ` Romain Naour
2016-01-23 8:32 ` Thomas Petazzoni
2016-01-23 10:47 ` Romain Naour
2016-01-23 1:07 ` Frank Hunleth
2016-01-23 10:55 ` Samuel Martin
2016-01-26 12:02 ` Joao Pinto
2016-01-26 13:26 ` Thomas Petazzoni
2016-01-27 11:37 ` Joao Pinto
2016-01-27 12:16 ` Thomas Petazzoni
2016-01-27 14:25 ` Joao Pinto
2016-01-27 15:09 ` Thomas Petazzoni
2016-01-27 15:13 ` Joao Pinto
2016-01-26 21:06 ` Bernd Kuhls
2016-01-27 17:18 ` Peter Korsgaard
2016-02-03 9:37 ` Max Filippov
2016-01-16 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2016-01-15 Thomas Petazzoni
2016-01-16 23:11 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2016-01-17 1:42 ` Frank Hunleth
2016-01-17 11:23 ` Thomas Petazzoni
2016-01-17 16:33 ` Frank Hunleth
2016-01-23 1:05 ` Frank Hunleth
2016-01-23 8:01 ` Thomas Petazzoni
2016-01-25 9:06 ` Joris Lijssens
2016-01-25 9:09 ` Thomas Petazzoni
2016-01-25 9:10 ` Joris Lijssens
2016-01-25 9:30 ` Joris Lijssens
2016-01-17 15:06 ` Matthew Weber
2016-01-17 17:26 ` Thomas Petazzoni
2016-01-17 17:10 ` Maxime Hadjinlian
2016-01-18 22:10 ` Thomas Petazzoni
2016-01-17 17:36 ` Jörg Krause
2016-01-17 18:22 ` Rodrigo Rebello
2016-01-17 19:02 ` Gary Bisson
2016-01-17 19:06 ` Romain Naour
2016-01-18 7:06 ` Alexey Brodkin
2016-01-18 12:22 ` Gustavo Zacarias
2016-01-18 20:53 ` Peter Seiderer
2016-01-18 21:03 ` Thomas Petazzoni
2015-07-29 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-07-28 Thomas Petazzoni
2015-07-29 8:03 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-07-29 9:30 ` Jérôme Pouiller
2015-07-29 19:55 ` Bernd Kuhls
2015-08-04 13:45 ` Angelo Compagnucci
2015-08-06 13:53 ` Guillaume GARDET - Oliséo
2015-08-06 13:58 ` Thomas Petazzoni
2015-08-06 14:07 ` Guillaume GARDET - Oliséo
2015-08-06 18:50 ` Thomas Petazzoni
2015-08-07 12:09 ` Guillaume GARDET - Oliséo
2015-07-22 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-07-21 Thomas Petazzoni
2015-07-22 7:43 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-07-22 9:07 ` Yegor Yefremov
2015-07-22 9:19 ` Thomas Petazzoni
2015-07-22 9:34 ` Guillaume GARDET - Oliséo
2015-07-22 10:04 ` Nicolas Ménégale
2015-07-22 11:20 ` Thomas Petazzoni
2015-07-22 10:06 ` Romain Naour
2015-07-22 11:22 ` Thomas Petazzoni
2015-07-22 12:15 ` Romain Naour
2015-07-22 16:27 ` Waldemar Brodkorb
2015-07-22 17:53 ` Romain Naour
2015-07-30 10:46 ` Romain Naour
2015-08-01 8:25 ` Waldemar Brodkorb
2015-08-01 16:40 ` Romain Naour
2015-07-22 10:48 ` Brendan Heading
2015-07-22 11:24 ` Brendan Heading
2015-07-22 12:30 ` Gustavo Zacarias
2015-07-22 12:45 ` Thomas Petazzoni
2015-07-22 12:51 ` Gustavo Zacarias
2015-07-22 12:52 ` Thomas Petazzoni
2015-07-22 14:23 ` Brendan Heading
2015-07-22 14:54 ` Thomas Petazzoni
2015-07-22 15:27 ` Brendan Heading
2015-07-22 15:40 ` Gustavo Zacarias
2015-07-22 15:44 ` Brendan Heading
2015-07-22 20:06 ` Thomas Petazzoni
2015-07-22 20:40 ` Brendan Heading
2015-07-22 20:46 ` Thomas Petazzoni
2015-07-22 21:03 ` Brendan Heading
2015-07-23 18:15 ` Gustavo Zacarias
2015-07-23 19:03 ` Brendan Heading
2015-07-23 19:04 ` Gustavo Zacarias
2015-07-22 12:51 ` Gustavo Zacarias
2015-07-22 13:03 ` Thomas Petazzoni
2015-07-28 13:56 ` Gustavo Zacarias
2015-07-28 14:02 ` Thomas Petazzoni
2015-07-22 14:49 ` Clayton Shotwell
2015-07-22 14:56 ` Thomas Petazzoni
2015-07-22 15:06 ` Alexey Brodkin
2015-07-22 15:14 ` Thomas Petazzoni
2015-07-22 15:26 ` Alexey Brodkin
2015-07-22 15:33 ` Thomas Petazzoni
2015-07-22 16:15 ` Waldemar Brodkorb
2015-07-22 17:04 ` Max Filippov
2015-07-23 6:27 ` Angelo Compagnucci
2015-05-19 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-18 Thomas Petazzoni
2015-05-19 8:00 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-19 8:12 ` Romain Naour
2015-05-21 13:28 ` Bartosz Golaszewski
2015-05-21 13:33 ` Thomas Petazzoni
2015-05-19 13:49 ` Alexey Brodkin
2015-05-19 15:48 ` Thomas Petazzoni
2015-05-25 11:08 ` Alexey Brodkin
2015-05-19 17:59 ` Peter Korsgaard
2015-05-20 17:49 ` Yann E. MORIN
2015-05-17 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-16 Thomas Petazzoni
2015-05-17 10:49 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-17 11:37 ` Yann E. MORIN
2015-05-17 12:08 ` Romain Naour
2015-05-17 13:52 ` Thomas Petazzoni
2015-05-17 14:19 ` Romain Naour
2015-05-14 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-13 Thomas Petazzoni
2015-05-14 21:13 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-14 22:58 ` Peter Korsgaard
2015-05-15 16:02 ` Thomas Petazzoni
2015-05-15 14:06 ` Waldemar Brodkorb
2015-05-15 15:17 ` Thomas Petazzoni
2015-05-06 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-05 Thomas Petazzoni
2015-05-06 7:42 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-06 8:07 ` gwenhael.goavec
2015-05-06 17:53 ` Waldemar Brodkorb
2015-05-06 20:58 ` Alexey Brodkin
2015-05-06 21:32 ` Peter Korsgaard
2015-05-06 21:42 ` Thomas Petazzoni
2015-05-06 22:01 ` Thomas Petazzoni
2015-05-07 6:51 ` Peter Korsgaard
2015-05-07 7:31 ` Thomas Petazzoni
2015-05-07 4:05 ` Waldemar Brodkorb
2015-05-07 7:33 ` Thomas Petazzoni
2015-05-07 7:42 ` Peter Korsgaard
2015-05-05 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-04 Thomas Petazzoni
2015-05-05 7:59 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-05 13:44 ` Gustavo Zacarias
2015-05-05 13:47 ` Thomas Petazzoni
[not found] ` <5548C487.90604@gmail.com>
2015-05-05 13:48 ` Thomas Petazzoni
2015-05-06 9:16 ` Pascal Huerst
2015-05-05 14:52 ` Max Filippov
2015-05-05 15:06 ` Thomas Petazzoni
2015-05-05 15:22 ` Peter Korsgaard
2015-05-05 15:26 ` Thomas Petazzoni
2015-05-05 15:50 ` Peter Korsgaard
2015-05-05 15:54 ` Thomas Petazzoni
2015-05-05 18:46 ` Peter Korsgaard
2015-05-06 7:34 ` Angelo Compagnucci
2015-05-06 7:44 ` Thomas Petazzoni
2015-05-02 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2015-05-01 Thomas Petazzoni
2015-05-03 8:50 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2015-05-03 10:39 ` Romain Naour
2015-05-03 11:23 ` Peter Korsgaard
2015-05-04 6:50 ` Richard Genoud
2015-05-04 13:52 ` Peter Korsgaard
2015-05-04 14:57 ` Richard Genoud
2015-05-04 21:30 ` Thomas Petazzoni
2015-05-05 11:00 ` Richard Genoud
2015-05-03 11:53 ` Baruch Siach
2015-05-04 10:28 ` Jörg Krause
2014-12-29 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-12-28 Thomas Petazzoni
2014-12-29 8:30 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-09-14 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-09-13 Thomas Petazzoni
2014-09-14 10:19 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-09-15 2:52 ` Matthew Weber
[not found] ` <CA+-urNSSKAn3=oXPM2553CO6+8XQB=4hKjzNR4mSg61aAY_LgQ@mail.gmail.com>
2014-09-15 13:59 ` Thomas Petazzoni
2014-09-15 14:48 ` Frank Hunleth
2014-09-28 10:47 ` Bernd Kuhls
2014-09-12 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-09-11 Thomas Petazzoni
2014-09-12 8:11 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-09-12 8:20 ` Nathaniel Roach
2014-09-12 8:53 ` Vicente Olivert Riera
2014-09-12 8:57 ` Thomas Petazzoni
2014-09-12 9:00 ` Vicente Olivert Riera
2014-09-12 9:01 ` Jörg Krause
2014-09-12 9:45 ` Anton Kolesov
2014-09-12 9:50 ` Thomas Petazzoni
2014-09-20 12:10 ` Bernd Kuhls
2014-09-07 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-09-06 Thomas Petazzoni
2014-09-07 8:09 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-09-07 12:56 ` Gustavo Zacarias
2014-09-07 13:06 ` Thomas Petazzoni
2014-09-07 13:07 ` Gustavo Zacarias
2014-09-08 8:32 ` Vicente Olivert Riera
2014-09-08 8:34 ` Thomas Petazzoni
2014-09-08 8:37 ` Vicente Olivert Riera
2014-09-08 9:17 ` Thomas Petazzoni
2014-09-08 12:20 ` Vicente Olivert Riera
2014-09-08 12:29 ` Thomas Petazzoni
2014-09-08 12:59 ` Vicente Olivert Riera
2014-09-08 13:18 ` Thomas Petazzoni
2014-09-06 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-09-05 Thomas Petazzoni
2014-09-06 18:36 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-09-06 20:25 ` Peter Korsgaard
2014-09-07 7:21 ` Thomas Petazzoni
2014-09-07 12:17 ` Thomas De Schampheleire
2014-09-07 12:26 ` Thomas Petazzoni
2014-09-07 15:34 ` Nathaniel Roach
2014-09-07 15:44 ` Yann E. MORIN
2014-09-07 18:18 ` Peter Korsgaard
2014-09-07 3:49 ` Nathaniel Roach
2014-09-07 7:41 ` Thomas Petazzoni
2014-08-29 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-08-28 Thomas Petazzoni
2014-08-29 7:30 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-08-26 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-08-25 Thomas Petazzoni
2014-08-26 7:29 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-08-26 7:37 ` Jörg Krause
2014-08-26 11:18 ` Gustavo Zacarias
2014-08-26 11:29 ` Vicente Olivert Riera
2014-08-26 11:46 ` Gustavo Zacarias
2014-08-26 11:48 ` Vicente Olivert Riera
2014-08-26 12:13 ` Gustavo Zacarias
2014-08-13 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-08-12 Thomas Petazzoni
2014-08-13 8:15 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-08-13 8:26 ` Nathaniel Roach
2014-08-13 9:05 ` Luca Ceresoli
2014-08-13 9:06 ` Thomas Petazzoni
2014-08-13 10:31 ` Peter Korsgaard
2014-08-13 8:33 ` yuvaraj.patil at wipro.com
2014-06-15 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-06-14 Thomas Petazzoni
2014-06-15 10:20 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-06-15 10:36 ` Thomas De Schampheleire
2014-06-15 10:42 ` Thomas Petazzoni
2014-06-15 14:11 ` Thomas De Schampheleire
2014-06-13 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-06-12 Thomas Petazzoni
2014-06-13 9:12 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-06-13 14:55 ` Eric Le Bihan
2014-06-13 15:07 ` Thomas Petazzoni
2014-06-13 15:50 ` Eric Le Bihan
2014-06-13 15:59 ` Thomas Petazzoni
2014-05-07 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-05-06 Thomas Petazzoni
2014-05-07 7:31 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-05-07 8:04 ` Will Newton
2014-05-07 8:58 ` Thomas Petazzoni
2014-05-07 9:04 ` Peter Seiderer
2014-05-07 9:06 ` Thomas Petazzoni
2014-05-07 9:23 ` Thomas De Schampheleire
2014-05-07 9:26 ` Thomas Petazzoni
2014-05-07 13:04 ` Peter Korsgaard
2014-05-08 23:24 ` Arnout Vandecappelle
2014-05-09 13:34 ` Ezequiel Garcia
2014-05-09 19:06 ` Frank Bergmann
2014-03-05 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-03-04 Thomas Petazzoni
2014-03-05 10:27 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-03-05 10:29 ` Alvaro Gamez
2014-03-05 14:37 ` Alvaro Gamez
2014-03-05 14:42 ` Thomas Petazzoni
2014-03-05 15:01 ` Samuel Martin
2014-03-03 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-03-02 Thomas Petazzoni
2014-03-03 8:02 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-03-03 9:10 ` Baruch Siach
2014-03-03 9:38 ` Samuel Martin
2014-03-03 10:05 ` Thomas Petazzoni
2014-03-03 10:19 ` Samuel Martin
2014-03-03 10:27 ` Thomas Petazzoni
2014-03-03 11:17 ` Gustavo Zacarias
2014-03-03 11:31 ` Romain Naour
2014-03-03 12:48 ` Thomas Petazzoni
2014-03-07 0:44 ` Romain Naour
2014-03-07 8:30 ` Thomas Petazzoni
2014-03-10 21:27 ` Romain Naour
2014-03-02 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-03-01 Thomas Petazzoni
2014-03-02 8:57 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-03-02 9:50 ` Samuel Martin
2014-03-02 10:08 ` Thomas Petazzoni
2014-03-04 23:18 ` Arnout Vandecappelle
2014-03-05 9:04 ` Thomas Petazzoni
2014-03-05 10:10 ` Arnout Vandecappelle
2014-03-05 12:40 ` Thomas Petazzoni
2014-02-23 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-22 Thomas Petazzoni
2014-02-23 10:00 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-23 10:16 ` Thomas De Schampheleire
2014-02-23 10:56 ` Thomas Petazzoni
2014-02-23 15:45 ` Peter Korsgaard
2014-02-23 23:46 ` Ezequiel García
2014-02-24 21:16 ` Thomas Petazzoni
2014-02-24 21:18 ` Ezequiel García
2014-02-26 21:10 ` Thomas Petazzoni
2014-02-24 10:12 ` Vicente Olivert Riera
2014-02-24 10:30 ` Vicente Olivert Riera
2014-02-25 21:08 ` Samuel Martin
2014-02-21 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-20 Thomas Petazzoni
2014-02-21 9:08 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-21 9:24 ` Peter Korsgaard
2014-02-21 9:46 ` Frank Bergmann
2014-02-21 9:49 ` Anton Kolesov
2014-02-21 9:50 ` Thomas De Schampheleire
2014-02-21 13:54 ` Vicente Olivert Riera
2014-02-22 21:54 ` Ryan Barnett
2014-02-24 9:47 ` Vicente Olivert Riera
2014-02-26 11:06 ` Vicente Olivert Riera
2014-02-14 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-13 Thomas Petazzoni
2014-02-14 9:12 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-14 10:23 ` Anton Kolesov
2014-02-14 14:13 ` Thomas Petazzoni
2014-02-14 14:42 ` Peter Korsgaard
2014-02-14 15:19 ` Thomas Petazzoni
2014-02-14 17:05 ` Anton Kolesov
2014-02-14 17:42 ` Thomas Petazzoni
2014-02-14 11:29 ` Peter Korsgaard
2014-02-14 13:15 ` Ezequiel García
2014-02-15 7:27 ` Frank Bergmann
2014-02-15 17:29 ` Frank Bergmann
2014-02-15 21:31 ` Baruch Siach
2014-02-16 0:00 ` Romain Naour
2014-02-12 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-11 Thomas Petazzoni
2014-02-12 8:32 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-12 9:21 ` Peter Korsgaard
2014-02-12 9:29 ` Thomas Petazzoni
2014-02-12 9:39 ` Peter Korsgaard
2014-02-12 9:45 ` Thomas Petazzoni
2014-02-12 9:52 ` Peter Korsgaard
2014-02-12 10:15 ` Thomas Petazzoni
2014-02-12 9:41 ` Thomas De Schampheleire
2014-02-12 9:47 ` Thomas Petazzoni
2014-02-12 9:50 ` Thomas De Schampheleire
2014-02-12 11:39 ` Thomas De Schampheleire
2014-02-12 12:29 ` Thomas De Schampheleire
2014-02-12 12:31 ` Thomas Petazzoni
2014-02-12 12:44 ` Thomas De Schampheleire
2014-02-12 12:47 ` Thomas Petazzoni
2014-02-12 11:25 ` Samuel Martin
2014-02-12 17:52 ` Yann E. MORIN
2014-02-11 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-10 Thomas Petazzoni
2014-02-11 9:10 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-11 17:37 ` Baruch Siach
2014-02-12 8:05 ` Thomas Petazzoni
2014-02-12 8:11 ` Baruch Siach
2014-02-11 18:01 ` Yann E. MORIN
2014-02-12 8:06 ` Thomas Petazzoni
2014-02-12 20:58 ` Romain Naour
2014-02-13 11:29 ` Thomas Petazzoni
2014-02-13 18:54 ` Thomas Petazzoni
2014-02-13 21:17 ` Romain Naour
2014-02-13 21:59 ` Thomas Petazzoni
2014-02-07 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2014-02-06 Thomas Petazzoni
2014-02-07 12:53 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2014-02-07 13:01 ` Thomas De Schampheleire
2014-02-07 13:33 ` Thomas Petazzoni
2014-02-07 18:40 ` Yann E. MORIN
2014-02-07 13:25 ` Gustavo Zacarias
2014-02-07 19:18 ` Arnout Vandecappelle
2014-02-08 21:43 ` Peter Korsgaard
2014-02-07 14:00 ` Anton Kolesov
2014-02-07 14:53 ` Ezequiel García
2014-02-07 14:55 ` Thomas Petazzoni
2014-02-07 15:07 ` Ezequiel García
2014-02-07 15:14 ` Thomas Petazzoni
2014-02-07 15:19 ` Ezequiel García
2014-02-07 15:18 ` Peter Korsgaard
2014-02-07 18:53 ` Yann E. MORIN
2014-02-07 19:03 ` Spenser Gilliland
2014-02-08 11:40 ` Romain Naour
2014-02-17 15:40 ` Vicente Olivert Riera
2014-02-17 15:44 ` Markos Chandras
2014-02-17 15:45 ` Vicente Olivert Riera
2014-02-17 16:09 ` Thomas Petazzoni
2013-11-29 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2013-11-28 Thomas Petazzoni
2013-11-29 8:51 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2013-11-29 9:00 ` Peter Korsgaard
2013-11-29 10:04 ` Gustavo Zacarias
2013-11-22 7:30 [Buildroot] [autobuild.buildroot.net] Build results for 2013-11-21 Thomas Petazzoni
2013-11-22 8:14 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2013-11-22 9:15 ` Fabio Porcedda
2013-11-29 10:25 ` Fabio Porcedda
2013-11-22 10:42 ` Thomas De Schampheleire
2013-11-22 12:59 ` Thomas De Schampheleire
2013-11-22 16:01 ` Arnout Vandecappelle
2013-11-22 16:03 ` Thomas De Schampheleire
2013-11-22 11:56 ` Thomas Petazzoni
2013-11-22 11:58 ` Fatih Aşıcı
2013-11-22 12:13 ` Thomas Petazzoni
2013-11-23 23:07 ` Arnout Vandecappelle
2013-11-22 15:20 ` Peter Korsgaard
2013-08-28 6:30 [Buildroot] [autobuild.buildroot.net] Build results for 2013-08-27 Thomas Petazzoni
2013-08-28 7:08 ` [Buildroot] Analysis of build failures Thomas Petazzoni
2013-08-28 7:17 ` Will Newton
2013-08-28 11:19 ` Thomas Petazzoni
2013-08-28 11:00 ` Gustavo Zacarias
2013-08-28 11:30 ` Thomas Petazzoni
2013-08-28 11:34 ` Gustavo Zacarias
2013-08-28 11:49 ` Thomas Petazzoni
2013-08-28 11:55 ` Gustavo Zacarias
2013-08-28 11:31 ` Thomas De Schampheleire
2013-08-28 11:55 ` Thomas Petazzoni
2013-08-28 13:13 ` Thomas De Schampheleire
2013-08-28 13:21 ` Thomas Petazzoni
2013-08-28 11:45 ` Markos Chandras
2013-08-28 12:07 ` Thomas Petazzoni
2013-08-28 21:09 ` Arnout Vandecappelle
2013-08-28 21:29 ` Arnout Vandecappelle
2013-08-29 13:17 ` Jérôme Pouiller
2013-08-29 15:12 ` Thomas De Schampheleire
2013-08-30 9:26 ` Jérôme Pouiller
2013-08-30 11:08 ` Thomas Petazzoni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20131111113941.4247120a@skate \
--to=thomas.petazzoni@free-electrons.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.