* Re: build failure on ubuntu 64bits development system
2012-01-18 15:25 ` James Abernathy
@ 2012-01-18 15:31 ` Martin Jansa
2012-01-18 16:06 ` William Mills
2012-01-18 21:31 ` Darren Hart
2 siblings, 0 replies; 20+ messages in thread
From: Martin Jansa @ 2012-01-18 15:31 UTC (permalink / raw)
To: James Abernathy; +Cc: yocto
[-- Attachment #1: Type: text/plain, Size: 6805 bytes --]
On Wed, Jan 18, 2012 at 10:25:18AM -0500, James Abernathy wrote:
> On Wed, Jan 18, 2012 at 10:15 AM, William Mills <wmills@ti.com> wrote:
>
> >
> >
> > On 01/18/2012 10:04 AM, James Abernathy wrote:
> >
> >>
> >>
> >> ---------- Forwarded message ----------
> >> From: *William Mills* <wmills@ti.com <mailto:wmills@ti.com>>
> >> Date: Wed, Jan 18, 2012 at 9:57 AM
> >> Subject: Re: [yocto] build failure on ubuntu 64bits development system
> >> To: Gary Thomas <gary@mlbassoc.com <mailto:gary@mlbassoc.com>>
> >> Cc: yocto@yoctoproject.org <mailto:yocto@yoctoproject.org**>
> >>
> >>
> >>
> >>
> >> On 01/18/2012 09:51 AM, Gary Thomas wrote:
> >>
> >> On 2012-01-18 07 <tel:2012-01-18%2007>:42, James Abernathy wrote:
> >>
> >>
> >>
> >> On Wed, Jan 18, 2012 at 9:30 AM, James Abernathy
> >> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
> >> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>**>__>
> >>
> >> wrote:
> >>
> >>
> >>
> >> On Wed, Jan 18, 2012 at 7:55 AM, James Abernathy
> >> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
> >> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>**>__>
> >>
> >> wrote:
> >>
> >> I just built a new development pc and installed Ubuntu 11.10
> >> x64. I wonder if there are any new requirements to building
> >> Yocto in that environment? I got an error right
> >> off, but then it complete the first 63 task and stopped
> >> successfully. error below:
> >>
> >> jim@ubuntu:~/poky/build-cdv$ bitbake core-image-sato
> >> Pseudo is not present but is required, building this first
> >> before the main build
> >> Parsing recipes: 100%
> >> |#############################**__####################| Time:
> >> 00:00:25
> >>
> >> Parsing of 797 .bb files complete (0 cached, 797 parsed). 1037
> >> targets, 22 skipped, 0 masked, 0 errors.
> >> ERROR: Execution of event handler 'run_buildstats' failed
> >> Traceback (most recent call last):
> >> File "run_buildstats(e)", line 18, in
> >> run_buildstats(e=<bb.event.__**BuildStarted object at 0x4c338d0>)
> >>
> >> File "buildstats.bbclass", line 21, in
> >> set_device(e=<bb.event.__**BuildStarted object at 0x4c338d0>)
> >>
> >> UnboundLocalError: local variable 'rdev' referenced before
> >> assignment
> >>
> >>
> >> Any ideas?
> >>
> >> JIm A
> >>
> >>
> >> I went back and tried using the tarballs for poky edison and
> >> cedartrail bsp and the errors don't occur. So I'm guessing the
> >> issue isn't related to Ubuntu 32 vs. 64 bit.
> >>
> >>
> >> I spoke too soon. Same error in edison tarballs. I looked at the
> >> code and I can see an place were rdev could go un assigned. If
> >> you fell out of the for loop without passing any of
> >> the if conditions, rdev would be unassigned. That must be what
> >> is happening in Ubuntu 11.10 x64
> >>
> >> Anybody building with Ubuntu 11.10 x64? This doesn't happen on x32
> >>
> >> Jim A
> >>
> >>
> >> def set_device(e):
> >> tmpdir = bb.data.getVar('TMPDIR', e.data, True)
> >> try:
> >> os.remove(bb.data.getVar('__**DEVFILE', e.data, True))
> >> except:
> >> pass
> >> ##############################**__############################**
> >> ##__################
> >>
> >> # We look for the volume TMPDIR lives on. To do all disks would
> >> make little
> >> # sense and not give us any particularly useful data. In theory
> >> we could do
> >> # something like stick DL_DIR on a different partition and this
> >> would
> >> # throw stats gathering off. The same goes with SSTATE_DIR.
> >> However, let's
> >> # get the basics in here and work on the cornercases later.
> >> ##############################**__############################**
> >> ##__################
> >> device=os.stat(tmpdir)
> >> majordev=os.major(device.st___**dev)
> >> minordev=os.minor(device.st___**dev)
> >>
> >> for line in open("/proc/diskstats", "r"):
> >> if majordev == int(line.split()[0]) and minordev ==
> >> int(line.split()[1]):
> >> rdev=line.split()[2]
> >> file = open(bb.data.getVar('DEVFILE', e.data, True), "w")
> >> file.write(rdev)
> >> file.close()
> >>
> >>
> >> Can you show what the differences are between /proc/diskstats
> >> on the two systems? That's obviously what's causing the error.
> >>
> >>
> >> If your build dir is encyptfs or a fuse device or anything that is not a
> >> direct block device you will get this error. This is to be fixed in
> >> 1.1.1 but encyptfs will still have other problems.
> >>
> >> I build the Ubuntu 11.10 x64 system with 2 drives setup as Soft RAID 0.
> >> I picked btrfs as the file system for no particular reason. Should I go
> >> back to ext4 or is RAID 0 the problem?
> >>
> >
> > No, I would not do that yet. I would think software RAID would present a
> > block device so would not trigger this error.
> >
> > I was hoping to use RAID 0 for speed. I have a I7 2700K on a DZ68DB with 2
> 6Gb/s ports matched to 2 6Gb/s 7200 hard drives. Since the builds take so
> long, I was looking for an edge.
>
> So are there any recommendations at this point? I'm assuming that the
> default ext4 directly on the SATA drive is a fall back position.
FWIW: I'm using sw (mdadm) RAID0 (3 SATA2 drivers) for WORKDIR without any issues.
Cheers,
>
> Advice?
>
> Jim A
>
>
> > > 9 0 md0 133691 0 2218832 0 67133 0 5629616 0 0 0 0
> > > 9 1 md1 235 0 1880 0 0 0 0 0 0 0 0
> >
> > Your build dir is in md0 or md1 (wrt your other post)
> >
> >
> >> JIm A
> >>
> >> ______________________________**___________________
> >> yocto mailing list
> >> yocto@yoctoproject.org <mailto:yocto@yoctoproject.org**>
> >> https://lists.yoctoproject.__**org/listinfo/yocto
> >> <https://lists.yoctoproject.**org/listinfo/yocto<https://lists.yoctoproject.org/listinfo/yocto>
> >> >
> >>
> >>
> >>
> >>
> >> ______________________________**_________________
> >> yocto mailing list
> >> yocto@yoctoproject.org
> >> https://lists.yoctoproject.**org/listinfo/yocto<https://lists.yoctoproject.org/listinfo/yocto>
> >>
> >
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: build failure on ubuntu 64bits development system
2012-01-18 15:25 ` James Abernathy
2012-01-18 15:31 ` Martin Jansa
@ 2012-01-18 16:06 ` William Mills
2012-01-18 16:17 ` Jim Abernathy
2012-01-18 21:31 ` Darren Hart
2 siblings, 1 reply; 20+ messages in thread
From: William Mills @ 2012-01-18 16:06 UTC (permalink / raw)
To: James Abernathy; +Cc: yocto
On 01/18/2012 10:25 AM, James Abernathy wrote:
>
>
> On Wed, Jan 18, 2012 at 10:15 AM, William Mills <wmills@ti.com
> <mailto:wmills@ti.com>> wrote:
>
>
>
> On 01/18/2012 10:04 AM, James Abernathy wrote:
>
>
>
> ---------- Forwarded message ----------
> From: *William Mills* <wmills@ti.com <mailto:wmills@ti.com>
> <mailto:wmills@ti.com <mailto:wmills@ti.com>>>
> Date: Wed, Jan 18, 2012 at 9:57 AM
> Subject: Re: [yocto] build failure on ubuntu 64bits development
> system
> To: Gary Thomas <gary@mlbassoc.com <mailto:gary@mlbassoc.com>
> <mailto:gary@mlbassoc.com <mailto:gary@mlbassoc.com>>>
> Cc: yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
> <mailto:yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>__>
>
>
>
>
> On 01/18/2012 09:51 AM, Gary Thomas wrote:
>
> On 2012-01-18 07 <tel:2012-01-18%2007> <tel:2012-01-18%2007>:42,
> James Abernathy wrote:
>
>
>
> On Wed, Jan 18, 2012 at 9:30 AM, James Abernathy
> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>
> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>__>__>
>
> wrote:
>
>
>
> On Wed, Jan 18, 2012 at 7:55 AM, James Abernathy
> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>
> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>__>__>
>
> wrote:
>
> I just built a new development pc and installed Ubuntu 11.10
> x64. I wonder if there are any new requirements to building
> Yocto in that environment? I got an error right
> off, but then it complete the first 63 task and stopped
> successfully. error below:
>
> jim@ubuntu:~/poky/build-cdv$ bitbake core-image-sato
> Pseudo is not present but is required, building this first
> before the main build
> Parsing recipes: 100%
> |#############################____####################| Time:
> 00:00:25
>
> Parsing of 797 .bb files complete (0 cached, 797 parsed). 1037
> targets, 22 skipped, 0 masked, 0 errors.
> ERROR: Execution of event handler 'run_buildstats' failed
> Traceback (most recent call last):
> File "run_buildstats(e)", line 18, in
> run_buildstats(e=<bb.event.____BuildStarted object at 0x4c338d0>)
>
> File "buildstats.bbclass", line 21, in
> set_device(e=<bb.event.____BuildStarted object at 0x4c338d0>)
>
> UnboundLocalError: local variable 'rdev' referenced before
> assignment
>
>
> Any ideas?
>
> JIm A
>
>
> I went back and tried using the tarballs for poky edison and
> cedartrail bsp and the errors don't occur. So I'm guessing the
> issue isn't related to Ubuntu 32 vs. 64 bit.
>
>
> I spoke too soon. Same error in edison tarballs. I looked at the
> code and I can see an place were rdev could go un assigned. If
> you fell out of the for loop without passing any of
> the if conditions, rdev would be unassigned. That must be what
> is happening in Ubuntu 11.10 x64
>
> Anybody building with Ubuntu 11.10 x64? This doesn't happen on x32
>
> Jim A
>
>
> def set_device(e):
> tmpdir = bb.data.getVar('TMPDIR', e.data, True)
> try:
> os.remove(bb.data.getVar('____DEVFILE', e.data, True))
> except:
> pass
> ##############################____############################__##__################
>
> # We look for the volume TMPDIR lives on. To do all disks would
> make little
> # sense and not give us any particularly useful data. In theory
> we could do
> # something like stick DL_DIR on a different partition and this
> would
> # throw stats gathering off. The same goes with SSTATE_DIR.
> However, let's
> # get the basics in here and work on the cornercases later.
> ##############################____############################__##__################
> device=os.stat(tmpdir)
> majordev=os.major(device.st_____dev)
> minordev=os.minor(device.st_____dev)
>
> for line in open("/proc/diskstats", "r"):
> if majordev == int(line.split()[0]) and minordev ==
> int(line.split()[1]):
> rdev=line.split()[2]
> file = open(bb.data.getVar('DEVFILE', e.data, True), "w")
> file.write(rdev)
> file.close()
>
>
> Can you show what the differences are between /proc/diskstats
> on the two systems? That's obviously what's causing the error.
>
>
> If your build dir is encyptfs or a fuse device or anything that
> is not a
> direct block device you will get this error. This is to be fixed in
> 1.1.1 but encyptfs will still have other problems.
>
> I build the Ubuntu 11.10 x64 system with 2 drives setup as Soft
> RAID 0.
> I picked btrfs as the file system for no particular reason.
> Should I go
> back to ext4 or is RAID 0 the problem?
>
>
> No, I would not do that yet. I would think software RAID would
> present a block device so would not trigger this error.
>
> I was hoping to use RAID 0 for speed. I have a I7 2700K on a DZ68DB with
> 2 6Gb/s ports matched to 2 6Gb/s 7200 hard drives. Since the builds take
> so long, I was looking for an edge.
>
> So are there any recommendations at this point? I'm assuming that the
> default ext4 directly on the SATA drive is a fall back position.
>
> Advice?
If it were me, I would instrument (hack) that code above to see what
part is failing. Are you getting the right dev major/ minor from the
stat code or is the /proc/diskstats search code failing.
Alternatively you could try the 1.1.1 branch to see if that fixes it.
>
> Jim A
>
>
> > 9 0 md0 133691 0 2218832 0 67133 0 5629616 0 0 0 0
> > 9 1 md1 235 0 1880 0 0 0 0 0 0 0 0
>
> Your build dir is in md0 or md1 (wrt your other post)
>
>
> JIm A
>
> ___________________________________________________
> yocto mailing list
> yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
> <mailto:yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>__>
> https://lists.yoctoproject.____org/listinfo/yocto
> <https://lists.yoctoproject.__org/listinfo/yocto
> <https://lists.yoctoproject.org/listinfo/yocto>>
>
>
>
>
> _________________________________________________
> yocto mailing list
> yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
> https://lists.yoctoproject.__org/listinfo/yocto
> <https://lists.yoctoproject.org/listinfo/yocto>
>
>
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: build failure on ubuntu 64bits development system
2012-01-18 16:06 ` William Mills
@ 2012-01-18 16:17 ` Jim Abernathy
2012-01-18 16:32 ` Saul Wold
0 siblings, 1 reply; 20+ messages in thread
From: Jim Abernathy @ 2012-01-18 16:17 UTC (permalink / raw)
To: William Mills; +Cc: yocto
On 01/18/2012 11:06 AM, William Mills wrote:
>
>
> On 01/18/2012 10:25 AM, James Abernathy wrote:
>>
>>
>> On Wed, Jan 18, 2012 at 10:15 AM, William Mills <wmills@ti.com
>> <mailto:wmills@ti.com>> wrote:
>>
>>
>>
>> On 01/18/2012 10:04 AM, James Abernathy wrote:
>>
>>
>>
>> ---------- Forwarded message ----------
>> From: *William Mills* <wmills@ti.com <mailto:wmills@ti.com>
>> <mailto:wmills@ti.com <mailto:wmills@ti.com>>>
>> Date: Wed, Jan 18, 2012 at 9:57 AM
>> Subject: Re: [yocto] build failure on ubuntu 64bits development
>> system
>> To: Gary Thomas <gary@mlbassoc.com <mailto:gary@mlbassoc.com>
>> <mailto:gary@mlbassoc.com <mailto:gary@mlbassoc.com>>>
>> Cc: yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
>> <mailto:yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>__>
>>
>>
>>
>>
>> On 01/18/2012 09:51 AM, Gary Thomas wrote:
>>
>> On 2012-01-18 07 <tel:2012-01-18%2007> <tel:2012-01-18%2007>:42,
>> James Abernathy wrote:
>>
>>
>>
>> On Wed, Jan 18, 2012 at 9:30 AM, James Abernathy
>> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>
>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>__>__>
>>
>> wrote:
>>
>>
>>
>> On Wed, Jan 18, 2012 at 7:55 AM, James Abernathy
>> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>
>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>__>__>
>>
>> wrote:
>>
>> I just built a new development pc and installed Ubuntu 11.10
>> x64. I wonder if there are any new requirements to building
>> Yocto in that environment? I got an error right
>> off, but then it complete the first 63 task and stopped
>> successfully. error below:
>>
>> jim@ubuntu:~/poky/build-cdv$ bitbake core-image-sato
>> Pseudo is not present but is required, building this first
>> before the main build
>> Parsing recipes: 100%
>> |#############################____####################| Time:
>> 00:00:25
>>
>> Parsing of 797 .bb files complete (0 cached, 797 parsed). 1037
>> targets, 22 skipped, 0 masked, 0 errors.
>> ERROR: Execution of event handler 'run_buildstats' failed
>> Traceback (most recent call last):
>> File "run_buildstats(e)", line 18, in
>> run_buildstats(e=<bb.event.____BuildStarted object at
>> 0x4c338d0>)
>>
>> File "buildstats.bbclass", line 21, in
>> set_device(e=<bb.event.____BuildStarted object at 0x4c338d0>)
>>
>> UnboundLocalError: local variable 'rdev' referenced before
>> assignment
>>
>>
>> Any ideas?
>>
>> JIm A
>>
>>
>> I went back and tried using the tarballs for poky edison and
>> cedartrail bsp and the errors don't occur. So I'm guessing the
>> issue isn't related to Ubuntu 32 vs. 64 bit.
>>
>>
>> I spoke too soon. Same error in edison tarballs. I looked at the
>> code and I can see an place were rdev could go un assigned. If
>> you fell out of the for loop without passing any of
>> the if conditions, rdev would be unassigned. That must be what
>> is happening in Ubuntu 11.10 x64
>>
>> Anybody building with Ubuntu 11.10 x64? This doesn't happen
>> on x32
>>
>> Jim A
>>
>>
>> def set_device(e):
>> tmpdir = bb.data.getVar('TMPDIR', e.data, True)
>> try:
>> os.remove(bb.data.getVar('____DEVFILE', e.data, True))
>> except:
>> pass
>>
>> ##############################____############################__##__################
>>
>> # We look for the volume TMPDIR lives on. To do all disks would
>> make little
>> # sense and not give us any particularly useful data. In theory
>> we could do
>> # something like stick DL_DIR on a different partition and this
>> would
>> # throw stats gathering off. The same goes with SSTATE_DIR.
>> However, let's
>> # get the basics in here and work on the cornercases later.
>>
>> ##############################____############################__##__################
>> device=os.stat(tmpdir)
>> majordev=os.major(device.st_____dev)
>> minordev=os.minor(device.st_____dev)
>>
>> for line in open("/proc/diskstats", "r"):
>> if majordev == int(line.split()[0]) and minordev ==
>> int(line.split()[1]):
>> rdev=line.split()[2]
>> file = open(bb.data.getVar('DEVFILE', e.data, True), "w")
>> file.write(rdev)
>> file.close()
>>
>>
>> Can you show what the differences are between /proc/diskstats
>> on the two systems? That's obviously what's causing the error.
>>
>>
>> If your build dir is encyptfs or a fuse device or anything that
>> is not a
>> direct block device you will get this error. This is to be
>> fixed in
>> 1.1.1 but encyptfs will still have other problems.
>>
>> I build the Ubuntu 11.10 x64 system with 2 drives setup as Soft
>> RAID 0.
>> I picked btrfs as the file system for no particular reason.
>> Should I go
>> back to ext4 or is RAID 0 the problem?
>>
>>
>> No, I would not do that yet. I would think software RAID would
>> present a block device so would not trigger this error.
>>
>> I was hoping to use RAID 0 for speed. I have a I7 2700K on a DZ68DB with
>> 2 6Gb/s ports matched to 2 6Gb/s 7200 hard drives. Since the builds take
>> so long, I was looking for an edge.
>>
>> So are there any recommendations at this point? I'm assuming that the
>> default ext4 directly on the SATA drive is a fall back position.
>>
>> Advice?
>
> If it were me, I would instrument (hack) that code above to see what
> part is failing. Are you getting the right dev major/ minor from the
> stat code or is the /proc/diskstats search code failing.
>
> Alternatively you could try the 1.1.1 branch to see if that fixes it.
>
I'm not sure I'm the right guys to be debugging this :-)
In the interest of my schedule, and since this is a brand new
workstation, I'm just going to try EXT4 on Soft RAID 0 and see if that
works. If not, I'll look at 1.1.1. I Assume that would be the M4
release at this time.
Jim A
>
>>
>> Jim A
>>
>>
>> > 9 0 md0 133691 0 2218832 0 67133 0 5629616 0 0 0 0
>> > 9 1 md1 235 0 1880 0 0 0 0 0 0 0 0
>>
>> Your build dir is in md0 or md1 (wrt your other post)
>>
>>
>> JIm A
>>
>> ___________________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
>> <mailto:yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>__>
>> https://lists.yoctoproject.____org/listinfo/yocto
>> <https://lists.yoctoproject.__org/listinfo/yocto
>> <https://lists.yoctoproject.org/listinfo/yocto>>
>>
>>
>>
>>
>> _________________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
>> https://lists.yoctoproject.__org/listinfo/yocto
>> <https://lists.yoctoproject.org/listinfo/yocto>
>>
>>
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: build failure on ubuntu 64bits development system
2012-01-18 16:17 ` Jim Abernathy
@ 2012-01-18 16:32 ` Saul Wold
2012-01-18 17:05 ` Jim Abernathy
0 siblings, 1 reply; 20+ messages in thread
From: Saul Wold @ 2012-01-18 16:32 UTC (permalink / raw)
To: Jim Abernathy; +Cc: yocto
On 01/18/2012 08:17 AM, Jim Abernathy wrote:
> On 01/18/2012 11:06 AM, William Mills wrote:
>>
>>
>> On 01/18/2012 10:25 AM, James Abernathy wrote:
>>>
>>>
>>> On Wed, Jan 18, 2012 at 10:15 AM, William Mills <wmills@ti.com
>>> <mailto:wmills@ti.com>> wrote:
>>>
>>>
>>>
>>> On 01/18/2012 10:04 AM, James Abernathy wrote:
>>>
>>>
>>>
>>> ---------- Forwarded message ----------
>>> From: *William Mills* <wmills@ti.com <mailto:wmills@ti.com>
>>> <mailto:wmills@ti.com <mailto:wmills@ti.com>>>
>>> Date: Wed, Jan 18, 2012 at 9:57 AM
>>> Subject: Re: [yocto] build failure on ubuntu 64bits development
>>> system
>>> To: Gary Thomas <gary@mlbassoc.com <mailto:gary@mlbassoc.com>
>>> <mailto:gary@mlbassoc.com <mailto:gary@mlbassoc.com>>>
>>> Cc: yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
>>> <mailto:yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>__>
>>>
>>>
>>>
>>>
>>> On 01/18/2012 09:51 AM, Gary Thomas wrote:
>>>
>>> On 2012-01-18 07 <tel:2012-01-18%2007> <tel:2012-01-18%2007>:42,
>>> James Abernathy wrote:
>>>
>>>
>>>
>>> On Wed, Jan 18, 2012 at 9:30 AM, James Abernathy
>>> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>
>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>__>__>
>>>
>>> wrote:
>>>
>>>
>>>
>>> On Wed, Jan 18, 2012 at 7:55 AM, James Abernathy
>>> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>
>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>__>__>
>>>
>>> wrote:
>>>
>>> I just built a new development pc and installed Ubuntu 11.10
>>> x64. I wonder if there are any new requirements to building
>>> Yocto in that environment? I got an error right
>>> off, but then it complete the first 63 task and stopped
>>> successfully. error below:
>>>
>>> jim@ubuntu:~/poky/build-cdv$ bitbake core-image-sato
>>> Pseudo is not present but is required, building this first
>>> before the main build
>>> Parsing recipes: 100%
>>> |#############################____####################| Time:
>>> 00:00:25
>>>
>>> Parsing of 797 .bb files complete (0 cached, 797 parsed). 1037
>>> targets, 22 skipped, 0 masked, 0 errors.
>>> ERROR: Execution of event handler 'run_buildstats' failed
>>> Traceback (most recent call last):
>>> File "run_buildstats(e)", line 18, in
>>> run_buildstats(e=<bb.event.____BuildStarted object at 0x4c338d0>)
>>>
>>> File "buildstats.bbclass", line 21, in
>>> set_device(e=<bb.event.____BuildStarted object at 0x4c338d0>)
>>>
>>> UnboundLocalError: local variable 'rdev' referenced before
>>> assignment
>>>
>>>
>>> Any ideas?
>>>
>>> JIm A
>>>
>>>
>>> I went back and tried using the tarballs for poky edison and
>>> cedartrail bsp and the errors don't occur. So I'm guessing the
>>> issue isn't related to Ubuntu 32 vs. 64 bit.
>>>
>>>
>>> I spoke too soon. Same error in edison tarballs. I looked at the
>>> code and I can see an place were rdev could go un assigned. If
>>> you fell out of the for loop without passing any of
>>> the if conditions, rdev would be unassigned. That must be what
>>> is happening in Ubuntu 11.10 x64
>>>
>>> Anybody building with Ubuntu 11.10 x64? This doesn't happen on x32
>>>
>>> Jim A
>>>
>>>
>>> def set_device(e):
>>> tmpdir = bb.data.getVar('TMPDIR', e.data, True)
>>> try:
>>> os.remove(bb.data.getVar('____DEVFILE', e.data, True))
>>> except:
>>> pass
>>> ##############################____############################__##__################
>>>
>>>
>>> # We look for the volume TMPDIR lives on. To do all disks would
>>> make little
>>> # sense and not give us any particularly useful data. In theory
>>> we could do
>>> # something like stick DL_DIR on a different partition and this
>>> would
>>> # throw stats gathering off. The same goes with SSTATE_DIR.
>>> However, let's
>>> # get the basics in here and work on the cornercases later.
>>> ##############################____############################__##__################
>>>
>>> device=os.stat(tmpdir)
>>> majordev=os.major(device.st_____dev)
>>> minordev=os.minor(device.st_____dev)
>>>
>>> for line in open("/proc/diskstats", "r"):
>>> if majordev == int(line.split()[0]) and minordev ==
>>> int(line.split()[1]):
>>> rdev=line.split()[2]
>>> file = open(bb.data.getVar('DEVFILE', e.data, True), "w")
>>> file.write(rdev)
>>> file.close()
>>>
>>>
>>> Can you show what the differences are between /proc/diskstats
>>> on the two systems? That's obviously what's causing the error.
>>>
>>>
>>> If your build dir is encyptfs or a fuse device or anything that
>>> is not a
>>> direct block device you will get this error. This is to be fixed in
>>> 1.1.1 but encyptfs will still have other problems.
>>>
>>> I build the Ubuntu 11.10 x64 system with 2 drives setup as Soft
>>> RAID 0.
>>> I picked btrfs as the file system for no particular reason.
>>> Should I go
>>> back to ext4 or is RAID 0 the problem?
>>>
>>>
>>> No, I would not do that yet. I would think software RAID would
>>> present a block device so would not trigger this error.
>>>
>>> I was hoping to use RAID 0 for speed. I have a I7 2700K on a DZ68DB with
>>> 2 6Gb/s ports matched to 2 6Gb/s 7200 hard drives. Since the builds take
>>> so long, I was looking for an edge.
>>>
>>> So are there any recommendations at this point? I'm assuming that the
>>> default ext4 directly on the SATA drive is a fall back position.
>>>
>>> Advice?
>>
>> If it were me, I would instrument (hack) that code above to see what
>> part is failing. Are you getting the right dev major/ minor from the
>> stat code or is the /proc/diskstats search code failing.
>>
>> Alternatively you could try the 1.1.1 branch to see if that fixes it.
>>
> I'm not sure I'm the right guys to be debugging this :-)
> In the interest of my schedule, and since this is a brand new
> workstation, I'm just going to try EXT4 on Soft RAID 0 and see if that
> works. If not, I'll look at 1.1.1. I Assume that would be the M4 release
> at this time.
>
You could try cherry-picking the following patch which is in master, I
an not sure this change will be in 1.1.1, but I recommended to Joshua to
add it.
f17c9d3 buildstats: tolerate absence of /proc/diskstats
Sau!
> Jim A
>>
>>>
>>> Jim A
>>>
>>>
>>> > 9 0 md0 133691 0 2218832 0 67133 0 5629616 0 0 0 0
>>> > 9 1 md1 235 0 1880 0 0 0 0 0 0 0 0
>>>
>>> Your build dir is in md0 or md1 (wrt your other post)
>>>
>>>
>>> JIm A
>>>
>>> ___________________________________________________
>>> yocto mailing list
>>> yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
>>> <mailto:yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>__>
>>> https://lists.yoctoproject.____org/listinfo/yocto
>>> <https://lists.yoctoproject.__org/listinfo/yocto
>>> <https://lists.yoctoproject.org/listinfo/yocto>>
>>>
>>>
>>>
>>>
>>> _________________________________________________
>>> yocto mailing list
>>> yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
>>> https://lists.yoctoproject.__org/listinfo/yocto
>>> <https://lists.yoctoproject.org/listinfo/yocto>
>>>
>>>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: build failure on ubuntu 64bits development system
2012-01-18 16:32 ` Saul Wold
@ 2012-01-18 17:05 ` Jim Abernathy
2012-01-18 21:34 ` Darren Hart
0 siblings, 1 reply; 20+ messages in thread
From: Jim Abernathy @ 2012-01-18 17:05 UTC (permalink / raw)
To: Saul Wold; +Cc: yocto
On 01/18/2012 11:32 AM, Saul Wold wrote:
> On 01/18/2012 08:17 AM, Jim Abernathy wrote:
>> On 01/18/2012 11:06 AM, William Mills wrote:
>>>
>>>
>>> On 01/18/2012 10:25 AM, James Abernathy wrote:
>>>>
>>>>
>>>> On Wed, Jan 18, 2012 at 10:15 AM, William Mills <wmills@ti.com
>>>> <mailto:wmills@ti.com>> wrote:
>>>>
>>>>
>>>>
>>>> On 01/18/2012 10:04 AM, James Abernathy wrote:
>>>>
>>>>
>>>>
>>>> ---------- Forwarded message ----------
>>>> From: *William Mills* <wmills@ti.com <mailto:wmills@ti.com>
>>>> <mailto:wmills@ti.com <mailto:wmills@ti.com>>>
>>>> Date: Wed, Jan 18, 2012 at 9:57 AM
>>>> Subject: Re: [yocto] build failure on ubuntu 64bits development
>>>> system
>>>> To: Gary Thomas <gary@mlbassoc.com <mailto:gary@mlbassoc.com>
>>>> <mailto:gary@mlbassoc.com <mailto:gary@mlbassoc.com>>>
>>>> Cc: yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
>>>> <mailto:yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>__>
>>>>
>>>>
>>>>
>>>>
>>>> On 01/18/2012 09:51 AM, Gary Thomas wrote:
>>>>
>>>> On 2012-01-18 07 <tel:2012-01-18%2007> <tel:2012-01-18%2007>:42,
>>>> James Abernathy wrote:
>>>>
>>>>
>>>>
>>>> On Wed, Jan 18, 2012 at 9:30 AM, James Abernathy
>>>> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>
>>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>__>__>
>>>>
>>>> wrote:
>>>>
>>>>
>>>>
>>>> On Wed, Jan 18, 2012 at 7:55 AM, James Abernathy
>>>> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>
>>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
>>>> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>__>__>
>>>>
>>>> wrote:
>>>>
>>>> I just built a new development pc and installed Ubuntu 11.10
>>>> x64. I wonder if there are any new requirements to building
>>>> Yocto in that environment? I got an error right
>>>> off, but then it complete the first 63 task and stopped
>>>> successfully. error below:
>>>>
>>>> jim@ubuntu:~/poky/build-cdv$ bitbake core-image-sato
>>>> Pseudo is not present but is required, building this first
>>>> before the main build
>>>> Parsing recipes: 100%
>>>> |#############################____####################| Time:
>>>> 00:00:25
>>>>
>>>> Parsing of 797 .bb files complete (0 cached, 797 parsed). 1037
>>>> targets, 22 skipped, 0 masked, 0 errors.
>>>> ERROR: Execution of event handler 'run_buildstats' failed
>>>> Traceback (most recent call last):
>>>> File "run_buildstats(e)", line 18, in
>>>> run_buildstats(e=<bb.event.____BuildStarted object at 0x4c338d0>)
>>>>
>>>> File "buildstats.bbclass", line 21, in
>>>> set_device(e=<bb.event.____BuildStarted object at 0x4c338d0>)
>>>>
>>>> UnboundLocalError: local variable 'rdev' referenced before
>>>> assignment
>>>>
>>>>
>>>> Any ideas?
>>>>
>>>> JIm A
>>>>
>>>>
>>>> I went back and tried using the tarballs for poky edison and
>>>> cedartrail bsp and the errors don't occur. So I'm guessing the
>>>> issue isn't related to Ubuntu 32 vs. 64 bit.
>>>>
>>>>
>>>> I spoke too soon. Same error in edison tarballs. I looked at the
>>>> code and I can see an place were rdev could go un assigned. If
>>>> you fell out of the for loop without passing any of
>>>> the if conditions, rdev would be unassigned. That must be what
>>>> is happening in Ubuntu 11.10 x64
>>>>
>>>> Anybody building with Ubuntu 11.10 x64? This doesn't happen on x32
>>>>
>>>> Jim A
>>>>
>>>>
>>>> def set_device(e):
>>>> tmpdir = bb.data.getVar('TMPDIR', e.data, True)
>>>> try:
>>>> os.remove(bb.data.getVar('____DEVFILE', e.data, True))
>>>> except:
>>>> pass
>>>> ##############################____############################__##__################
>>>>
>>>>
>>>>
>>>> # We look for the volume TMPDIR lives on. To do all disks would
>>>> make little
>>>> # sense and not give us any particularly useful data. In theory
>>>> we could do
>>>> # something like stick DL_DIR on a different partition and this
>>>> would
>>>> # throw stats gathering off. The same goes with SSTATE_DIR.
>>>> However, let's
>>>> # get the basics in here and work on the cornercases later.
>>>> ##############################____############################__##__################
>>>>
>>>>
>>>> device=os.stat(tmpdir)
>>>> majordev=os.major(device.st_____dev)
>>>> minordev=os.minor(device.st_____dev)
>>>>
>>>> for line in open("/proc/diskstats", "r"):
>>>> if majordev == int(line.split()[0]) and minordev ==
>>>> int(line.split()[1]):
>>>> rdev=line.split()[2]
>>>> file = open(bb.data.getVar('DEVFILE', e.data, True), "w")
>>>> file.write(rdev)
>>>> file.close()
>>>>
>>>>
>>>> Can you show what the differences are between /proc/diskstats
>>>> on the two systems? That's obviously what's causing the error.
>>>>
>>>>
>>>> If your build dir is encyptfs or a fuse device or anything that
>>>> is not a
>>>> direct block device you will get this error. This is to be fixed in
>>>> 1.1.1 but encyptfs will still have other problems.
>>>>
>>>> I build the Ubuntu 11.10 x64 system with 2 drives setup as Soft
>>>> RAID 0.
>>>> I picked btrfs as the file system for no particular reason.
>>>> Should I go
>>>> back to ext4 or is RAID 0 the problem?
>>>>
>>>>
>>>> No, I would not do that yet. I would think software RAID would
>>>> present a block device so would not trigger this error.
>>>>
>>>> I was hoping to use RAID 0 for speed. I have a I7 2700K on a DZ68DB
>>>> with
>>>> 2 6Gb/s ports matched to 2 6Gb/s 7200 hard drives. Since the builds
>>>> take
>>>> so long, I was looking for an edge.
>>>>
>>>> So are there any recommendations at this point? I'm assuming that the
>>>> default ext4 directly on the SATA drive is a fall back position.
>>>>
>>>> Advice?
>>>
>>> If it were me, I would instrument (hack) that code above to see what
>>> part is failing. Are you getting the right dev major/ minor from the
>>> stat code or is the /proc/diskstats search code failing.
>>>
>>> Alternatively you could try the 1.1.1 branch to see if that fixes it.
>>>
>> I'm not sure I'm the right guys to be debugging this :-)
>> In the interest of my schedule, and since this is a brand new
>> workstation, I'm just going to try EXT4 on Soft RAID 0 and see if that
>> works. If not, I'll look at 1.1.1. I Assume that would be the M4 release
>> at this time.
>>
> You could try cherry-picking the following patch which is in master, I
> an not sure this change will be in 1.1.1, but I recommended to Joshua
> to add it.
>
> f17c9d3 buildstats: tolerate absence of /proc/diskstats
>
> Sau!
>
Okay, problem solved for me at least. I went back and rebuilt the
system with Ubuntu 11.10 Alternate 64bit install cdrom and still used
Soft RAID 0, but file system was chosen to be EXT4. Build works fine
with Edison branch.
FYI for those wanting to use Soft RAID, make sure you create one very
small primary partition for GRUB2 to put the second part of the
boot-loader in. Can't use the old process.
Jim A
>> Jim A
>>>
>>>>
>>>> Jim A
>>>>
>>>>
>>>> > 9 0 md0 133691 0 2218832 0 67133 0 5629616 0 0 0 0
>>>> > 9 1 md1 235 0 1880 0 0 0 0 0 0 0 0
>>>>
>>>> Your build dir is in md0 or md1 (wrt your other post)
>>>>
>>>>
>>>> JIm A
>>>>
>>>> ___________________________________________________
>>>> yocto mailing list
>>>> yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
>>>> <mailto:yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>__>
>>>> https://lists.yoctoproject.____org/listinfo/yocto
>>>> <https://lists.yoctoproject.__org/listinfo/yocto
>>>> <https://lists.yoctoproject.org/listinfo/yocto>>
>>>>
>>>>
>>>>
>>>>
>>>> _________________________________________________
>>>> yocto mailing list
>>>> yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
>>>> https://lists.yoctoproject.__org/listinfo/yocto
>>>> <https://lists.yoctoproject.org/listinfo/yocto>
>>>>
>>>>
>>
>> _______________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/yocto
>>
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: build failure on ubuntu 64bits development system
2012-01-18 17:05 ` Jim Abernathy
@ 2012-01-18 21:34 ` Darren Hart
2012-01-19 13:55 ` Jim Abernathy
0 siblings, 1 reply; 20+ messages in thread
From: Darren Hart @ 2012-01-18 21:34 UTC (permalink / raw)
To: Jim Abernathy; +Cc: yocto
On 01/18/2012 09:05 AM, Jim Abernathy wrote:
> FYI for those wanting to use Soft RAID, make sure you create one very
> small primary partition for GRUB2 to put the second part of the
> boot-loader in. Can't use the old process.
I strongly recommend using a separate DISK for your OS installation.
Yocto builds are hard on disks, and RAID 0 increases your risk of
failure in exchange for the added performance. I use a small SSD for my
OS disk and a large RAID0 array of spinning disks for /build and another
array for /virt (where my VM images live - easily recreated).
--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: build failure on ubuntu 64bits development system
2012-01-18 21:34 ` Darren Hart
@ 2012-01-19 13:55 ` Jim Abernathy
2012-01-19 15:44 ` William Mills
2012-01-19 17:44 ` Darren Hart
0 siblings, 2 replies; 20+ messages in thread
From: Jim Abernathy @ 2012-01-19 13:55 UTC (permalink / raw)
To: Darren Hart; +Cc: yocto
[-- Attachment #1: Type: text/plain, Size: 1384 bytes --]
On 01/18/2012 04:34 PM, Darren Hart wrote:
>
> On 01/18/2012 09:05 AM, Jim Abernathy wrote:
>
>> FYI for those wanting to use Soft RAID, make sure you create one very
>> small primary partition for GRUB2 to put the second part of the
>> boot-loader in. Can't use the old process.
> I strongly recommend using a separate DISK for your OS installation.
> Yocto builds are hard on disks, and RAID 0 increases your risk of
> failure in exchange for the added performance. I use a small SSD for my
> OS disk and a large RAID0 array of spinning disks for /build and another
> array for /virt (where my VM images live - easily recreated).
>
Learned a few things in this process. I appreciate all the help and advice.
1. So we know that at least with Edison, btrfs does not work with bitbake.
2. When I rebuilt the system, this time I put the Linux root directory
on an 80GB SSD. That is where I also have my clone of Linux-Yocto
repository, poky, and download directory , DL_DIR.
3. I have create /build with EXT4 format on a Software RAID 0 (striped)
partition, using 2 separate hard drives, to use as the working
build directory for bitbake. I have a striped swap file on the same
two drives. But with 8GB or RAM, I shouldn't be using that much.
My build times for some of the basic meta-intel BSPs is around 103 minutes.
Jim A
[-- Attachment #2: Type: text/html, Size: 1950 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: build failure on ubuntu 64bits development system
2012-01-19 13:55 ` Jim Abernathy
@ 2012-01-19 15:44 ` William Mills
2012-01-19 17:44 ` Darren Hart
1 sibling, 0 replies; 20+ messages in thread
From: William Mills @ 2012-01-19 15:44 UTC (permalink / raw)
To: Jim Abernathy; +Cc: yocto, Darren Hart
On 01/19/2012 08:55 AM, Jim Abernathy wrote:
> On 01/18/2012 04:34 PM, Darren Hart wrote:
>>
>> On 01/18/2012 09:05 AM, Jim Abernathy wrote:
>>
>>> FYI for those wanting to use Soft RAID, make sure you create one very
>>> small primary partition for GRUB2 to put the second part of the
>>> boot-loader in. Can't use the old process.
>> I strongly recommend using a separate DISK for your OS installation.
>> Yocto builds are hard on disks, and RAID 0 increases your risk of
>> failure in exchange for the added performance. I use a small SSD for my
>> OS disk and a large RAID0 array of spinning disks for /build and another
>> array for /virt (where my VM images live - easily recreated).
>>
> Learned a few things in this process. I appreciate all the help and advice.
>
> 1. So we know that at least with Edison, btrfs does not work with
> bitbake.
This looks pretty important to me. Can you create a bug report for this
Jim? It may be decided that it is a dup of the one Darren already
pointed to but I would like to see someone prove that. It is not clear
to me why the blockstats feature could not be supported on btrfs so
could justify seperate tracking anyway. (The resolution of the one
Darren pointed to will be to just disable blockstats for filesystem that
don't have block devices.)
> 2. When I rebuilt the system, this time I put the Linux root
> directory on an 80GB SSD. That is where I also have my clone of
> Linux-Yocto repository, poky, and download directory , DL_DIR.
> 3. I have create /build with EXT4 format on a Software RAID 0
> (striped) partition, using 2 separate hard drives, to use as the
> working build directory for bitbake. I have a striped swap file on
> the same two drives. But with 8GB or RAM, I shouldn't be using
> that much.
>
> My build times for some of the basic meta-intel BSPs is around 103 minutes.
>
> Jim A
>
>
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: build failure on ubuntu 64bits development system
2012-01-19 13:55 ` Jim Abernathy
2012-01-19 15:44 ` William Mills
@ 2012-01-19 17:44 ` Darren Hart
2012-01-19 20:11 ` Jim Abernathy
1 sibling, 1 reply; 20+ messages in thread
From: Darren Hart @ 2012-01-19 17:44 UTC (permalink / raw)
To: Jim Abernathy; +Cc: yocto
On 01/19/2012 05:55 AM, Jim Abernathy wrote:
> On 01/18/2012 04:34 PM, Darren Hart wrote:
>>
>> On 01/18/2012 09:05 AM, Jim Abernathy wrote:
>>
>>> FYI for those wanting to use Soft RAID, make sure you create one very
>>> small primary partition for GRUB2 to put the second part of the
>>> boot-loader in. Can't use the old process.
>> I strongly recommend using a separate DISK for your OS installation.
>> Yocto builds are hard on disks, and RAID 0 increases your risk of
>> failure in exchange for the added performance. I use a small SSD for my
>> OS disk and a large RAID0 array of spinning disks for /build and another
>> array for /virt (where my VM images live - easily recreated).
>>
> Learned a few things in this process. I appreciate all the help and advice.
>
> 1. So we know that at least with Edison, btrfs does not work with bitbake.
> 2. When I rebuilt the system, this time I put the Linux root directory
> on an 80GB SSD. That is where I also have my clone of Linux-Yocto
> repository, poky, and download directory , DL_DIR.
> 3. I have create /build with EXT4 format on a Software RAID 0 (striped)
> partition, using 2 separate hard drives, to use as the working
> build directory for bitbake. I have a striped swap file on the same
> two drives. But with 8GB or RAM, I shouldn't be using that much.
>
> My build times for some of the basic meta-intel BSPs is around 103 minutes.
You may be able to improve upon that with the following in /etc/fstab:
/dev/md0 /build ext4 noauto,noatime,nodiratime,commit=6000 0 2
This reduces the number of writes due to updated access time and
increases the commit interval so it doesn't stall while writing out
every 5 minutes per default.
NOTE: THIS INCREASES YOUR RISK OF DATA LOSS
If your machine goes down during a build, you should plan on formatting
that drive. If you only keep builds on it, they easily recreateable and
you may find the performance boost is worth the risk.
--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: build failure on ubuntu 64bits development system
2012-01-19 17:44 ` Darren Hart
@ 2012-01-19 20:11 ` Jim Abernathy
0 siblings, 0 replies; 20+ messages in thread
From: Jim Abernathy @ 2012-01-19 20:11 UTC (permalink / raw)
To: Darren Hart; +Cc: yocto
On 01/19/2012 12:44 PM, Darren Hart wrote:
>
> On 01/19/2012 05:55 AM, Jim Abernathy wrote:
>> On 01/18/2012 04:34 PM, Darren Hart wrote:
>>> On 01/18/2012 09:05 AM, Jim Abernathy wrote:
>>>
>>>> FYI for those wanting to use Soft RAID, make sure you create one very
>>>> small primary partition for GRUB2 to put the second part of the
>>>> boot-loader in. Can't use the old process.
>>> I strongly recommend using a separate DISK for your OS installation.
>>> Yocto builds are hard on disks, and RAID 0 increases your risk of
>>> failure in exchange for the added performance. I use a small SSD for my
>>> OS disk and a large RAID0 array of spinning disks for /build and another
>>> array for /virt (where my VM images live - easily recreated).
>>>
>> Learned a few things in this process. I appreciate all the help and advice.
>>
>> 1. So we know that at least with Edison, btrfs does not work with bitbake.
>> 2. When I rebuilt the system, this time I put the Linux root directory
>> on an 80GB SSD. That is where I also have my clone of Linux-Yocto
>> repository, poky, and download directory , DL_DIR.
>> 3. I have create /build with EXT4 format on a Software RAID 0 (striped)
>> partition, using 2 separate hard drives, to use as the working
>> build directory for bitbake. I have a striped swap file on the same
>> two drives. But with 8GB or RAM, I shouldn't be using that much.
>>
>> My build times for some of the basic meta-intel BSPs is around 103 minutes.
> You may be able to improve upon that with the following in /etc/fstab:
>
> /dev/md0 /build ext4 noauto,noatime,nodiratime,commit=6000 0 2
>
> This reduces the number of writes due to updated access time and
> increases the commit interval so it doesn't stall while writing out
> every 5 minutes per default.
>
> NOTE: THIS INCREASES YOUR RISK OF DATA LOSS
>
> If your machine goes down during a build, you should plan on formatting
> that drive. If you only keep builds on it, they easily recreateable and
> you may find the performance boost is worth the risk.
>
I'll test this out and see. I'm plan on keeping this system on a UPS
anyway.
Jim S
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: build failure on ubuntu 64bits development system
2012-01-18 15:25 ` James Abernathy
2012-01-18 15:31 ` Martin Jansa
2012-01-18 16:06 ` William Mills
@ 2012-01-18 21:31 ` Darren Hart
2 siblings, 0 replies; 20+ messages in thread
From: Darren Hart @ 2012-01-18 21:31 UTC (permalink / raw)
To: James Abernathy; +Cc: yocto
On 01/18/2012 07:25 AM, James Abernathy wrote:
>
>
> On Wed, Jan 18, 2012 at 10:15 AM, William Mills <wmills@ti.com
> <mailto:wmills@ti.com>> wrote:
>
>
>
> On 01/18/2012 10:04 AM, James Abernathy wrote:
>
>
>
> ---------- Forwarded message ----------
> From: *William Mills* <wmills@ti.com <mailto:wmills@ti.com>
> <mailto:wmills@ti.com <mailto:wmills@ti.com>>>
> Date: Wed, Jan 18, 2012 at 9:57 AM
> Subject: Re: [yocto] build failure on ubuntu 64bits development
> system
> To: Gary Thomas <gary@mlbassoc.com <mailto:gary@mlbassoc.com>
> <mailto:gary@mlbassoc.com <mailto:gary@mlbassoc.com>>>
> Cc: yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
> <mailto:yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>__>
>
>
>
>
> On 01/18/2012 09:51 AM, Gary Thomas wrote:
>
> On 2012-01-18 07 <tel:2012-01-18%2007>
> <tel:2012-01-18%2007>:42, James Abernathy wrote:
>
>
>
> On Wed, Jan 18, 2012 at 9:30 AM, James Abernathy
> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>
> <mailto:jfabernathy@gmail.com
> <mailto:jfabernathy@gmail.com> <mailto:jfabernathy@gmail.com
> <mailto:jfabernathy@gmail.com>>__>__>
>
> wrote:
>
>
>
> On Wed, Jan 18, 2012 at 7:55 AM, James Abernathy
> <jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>
> <mailto:jfabernathy@gmail.com <mailto:jfabernathy@gmail.com>>
> <mailto:jfabernathy@gmail.com
> <mailto:jfabernathy@gmail.com> <mailto:jfabernathy@gmail.com
> <mailto:jfabernathy@gmail.com>>__>__>
>
> wrote:
>
> I just built a new development pc and installed Ubuntu 11.10
> x64. I wonder if there are any new requirements to building
> Yocto in that environment? I got an error right
> off, but then it complete the first 63 task and stopped
> successfully. error below:
>
> jim@ubuntu:~/poky/build-cdv$ bitbake core-image-sato
> Pseudo is not present but is required, building this first
> before the main build
> Parsing recipes: 100%
> |#############################____####################|
> Time: 00:00:25
>
> Parsing of 797 .bb files complete (0 cached, 797 parsed).
> 1037
> targets, 22 skipped, 0 masked, 0 errors.
> ERROR: Execution of event handler 'run_buildstats' failed
> Traceback (most recent call last):
> File "run_buildstats(e)", line 18, in
> run_buildstats(e=<bb.event.____BuildStarted object at
> 0x4c338d0>)
>
> File "buildstats.bbclass", line 21, in
> set_device(e=<bb.event.____BuildStarted object at 0x4c338d0>)
>
> UnboundLocalError: local variable 'rdev' referenced before
> assignment
>
>
> Any ideas?
>
> JIm A
>
>
> I went back and tried using the tarballs for poky edison and
> cedartrail bsp and the errors don't occur. So I'm
> guessing the
> issue isn't related to Ubuntu 32 vs. 64 bit.
>
>
> I spoke too soon. Same error in edison tarballs. I looked
> at the
> code and I can see an place were rdev could go un
> assigned. If
> you fell out of the for loop without passing any of
> the if conditions, rdev would be unassigned. That must be
> what
> is happening in Ubuntu 11.10 x64
>
> Anybody building with Ubuntu 11.10 x64? This doesn't
> happen on x32
>
> Jim A
>
>
> def set_device(e):
> tmpdir = bb.data.getVar('TMPDIR', e.data, True)
> try:
> os.remove(bb.data.getVar('____DEVFILE', e.data, True))
> except:
> pass
>
> ##############################____############################__##__################
>
> # We look for the volume TMPDIR lives on. To do all disks
> would
> make little
> # sense and not give us any particularly useful data. In
> theory
> we could do
> # something like stick DL_DIR on a different partition
> and this
> would
> # throw stats gathering off. The same goes with SSTATE_DIR.
> However, let's
> # get the basics in here and work on the cornercases later.
>
> ##############################____############################__##__################
> device=os.stat(tmpdir)
> majordev=os.major(device.st_____dev)
> minordev=os.minor(device.st_____dev)
>
> for line in open("/proc/diskstats", "r"):
> if majordev == int(line.split()[0]) and minordev ==
> int(line.split()[1]):
> rdev=line.split()[2]
> file = open(bb.data.getVar('DEVFILE', e.data, True), "w")
> file.write(rdev)
> file.close()
>
>
> Can you show what the differences are between /proc/diskstats
> on the two systems? That's obviously what's causing the error.
>
>
> If your build dir is encyptfs or a fuse device or anything that
> is not a
> direct block device you will get this error. This is to be fixed in
> 1.1.1 but encyptfs will still have other problems.
>
> I build the Ubuntu 11.10 x64 system with 2 drives setup as Soft
> RAID 0.
> I picked btrfs as the file system for no particular reason.
> Should I go
> back to ext4 or is RAID 0 the problem?
>
>
> No, I would not do that yet. I would think software RAID would
> present a block device so would not trigger this error.
>
> I was hoping to use RAID 0 for speed. I have a I7 2700K on a DZ68DB with
> 2 6Gb/s ports matched to 2 6Gb/s 7200 hard drives. Since the builds
> take so long, I was looking for an edge.
>
> So are there any recommendations at this point? I'm assuming that the
> default ext4 directly on the SATA drive is a fall back position.
I use software RAID0 with ext4 on Ubuntu 11.10 amd64 for my primary
build system. I have never tried btrfs.
--
Darren
>
> Advice?
>
> Jim A
>
>
> > 9 0 md0 133691 0 2218832 0 67133 0 5629616 0 0 0 0
> > 9 1 md1 235 0 1880 0 0 0 0 0 0 0 0
>
> Your build dir is in md0 or md1 (wrt your other post)
>
>
> JIm A
>
> ___________________________________________________
> yocto mailing list
> yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
> <mailto:yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>__>
> https://lists.yoctoproject.____org/listinfo/yocto
> <https://lists.yoctoproject.__org/listinfo/yocto
> <https://lists.yoctoproject.org/listinfo/yocto>>
>
>
>
>
> _________________________________________________
> yocto mailing list
> yocto@yoctoproject.org <mailto:yocto@yoctoproject.org>
> https://lists.yoctoproject.__org/listinfo/yocto
> <https://lists.yoctoproject.org/listinfo/yocto>
>
>
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
^ permalink raw reply [flat|nested] 20+ messages in thread