All of lore.kernel.org
 help / color / mirror / Atom feed
* beagle-xm more testing
@ 2011-05-15  8:58 Robert Berger
  2011-05-16 19:25 ` Darren Hart
  0 siblings, 1 reply; 4+ messages in thread
From: Robert Berger @ 2011-05-15  8:58 UTC (permalink / raw)
  To: poky

Hi,

with the remotes/origin/bernard-5.0.1 branch and this tweak:

diff --git a/meta/recipes-bsp/uboot/u-boot_git.bb
b/meta/recipes-bsp/uboot/u-boot_git.bb
index 4686a58..23212aa 100644
--- a/meta/recipes-bsp/uboot/u-boot_git.bb
+++ b/meta/recipes-bsp/uboot/u-boot_git.bb
@@ -2,7 +2,7 @@ require u-boot.inc

 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
-
file://README;beginline=1;endline=22;md5=3a00ef51d3fc96e9d6c1bc4708ccd3b5"
+
file://README;beginline=1;endline=22;md5=5ba4218ac89af7846802d0348df3fb90"

 FILESDIR =
"${@os.path.dirname(bb.data.getVar('FILE',d,1))}/u-boot-git/${MACHINE}"

You can get a working poky-sato-sdk well x-server fails, but you end up
at some login prompt and have networking support.

The poky-lsb-sdk also takes you to a login prompt, but without
networking from dhcp.

to enable networking from dhcp I did this, which i got from here:

http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit
/?id=24b30e528554de78bb61022923e70dd6574e94ec

# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

# The loopback interface
auto lo
iface lo inet loopback

# Wireless interfaces
iface wlan0 inet dhcp
wireless_mode managed
wireless_essid any
wpa-driver wext
wpa-conf /etc/wpa_supplicant.conf

iface atml0 inet dhcp

# Wired or wireless interfaces
auto eth0
iface eth0 inet dhcp
iface eth1 inet dhcp

# Ethernet/RNDIS gadget (g_ether) or LAN9514 on BeagleBoard xM
auto usb0
iface usb0 inet dhcp

# Bluetooth networking
iface bnep0 inet dhcp

... which gives me a usable lsb-sdk image for the beagle-xm ...

The inclusion of those fixes in 5.0.1 would be great to get an "out of
the box" experience, since the latest and greatest from git is not
really working:
http://bugzilla.pokylinux.org/show_bug.cgi?id=1071

Regards,

Robert



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: beagle-xm more testing
  2011-05-15  8:58 beagle-xm more testing Robert Berger
@ 2011-05-16 19:25 ` Darren Hart
  2011-05-17  1:01   ` Robert Berger
  0 siblings, 1 reply; 4+ messages in thread
From: Darren Hart @ 2011-05-16 19:25 UTC (permalink / raw)
  To: gmane; +Cc: poky



On 05/15/2011 01:58 AM, Robert Berger wrote:
> Hi,
> 
> with the remotes/origin/bernard-5.0.1 branch and this tweak:
> 
> diff --git a/meta/recipes-bsp/uboot/u-boot_git.bb
> b/meta/recipes-bsp/uboot/u-boot_git.bb
> index 4686a58..23212aa 100644
> --- a/meta/recipes-bsp/uboot/u-boot_git.bb
> +++ b/meta/recipes-bsp/uboot/u-boot_git.bb
> @@ -2,7 +2,7 @@ require u-boot.inc
> 
>  LICENSE = "GPLv2+"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
> -
> file://README;beginline=1;endline=22;md5=3a00ef51d3fc96e9d6c1bc4708ccd3b5"
> +
> file://README;beginline=1;endline=22;md5=5ba4218ac89af7846802d0348df3fb90"


This needs to be moved into one of the recipes which define the SRCREV,
otherwise the md5 may change from version to version. md5 and SRCREV
really don't belong in an .inc file.

Would you like to submit this a patch to be included?

> 
>  FILESDIR =
> "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/u-boot-git/${MACHINE}"
> 
> You can get a working poky-sato-sdk well x-server fails, but you end up
> at some login prompt and have networking support.
> 
> The poky-lsb-sdk also takes you to a login prompt, but without
> networking from dhcp.
> 
> to enable networking from dhcp I did this, which i got from here:
> 
> http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit
> /?id=24b30e528554de78bb61022923e70dd6574e94ec


I agree that I like this approach better, but it won't make the point
release. Look for this one in 1.1.


> 
> # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
> 
> # The loopback interface
> auto lo
> iface lo inet loopback
> 
> # Wireless interfaces
> iface wlan0 inet dhcp
> wireless_mode managed
> wireless_essid any
> wpa-driver wext
> wpa-conf /etc/wpa_supplicant.conf
> 
> iface atml0 inet dhcp
> 
> # Wired or wireless interfaces
> auto eth0
> iface eth0 inet dhcp
> iface eth1 inet dhcp
> 
> # Ethernet/RNDIS gadget (g_ether) or LAN9514 on BeagleBoard xM
> auto usb0
> iface usb0 inet dhcp
> 
> # Bluetooth networking
> iface bnep0 inet dhcp
> 
> ... which gives me a usable lsb-sdk image for the beagle-xm ...
> 
> The inclusion of those fixes in 5.0.1 would be great to get an "out of
> the box" experience, since the latest and greatest from git is not
> really working:
> http://bugzilla.pokylinux.org/show_bug.cgi?id=1071


The u-boot issues concern me the most. Unfortunately the dev-cut for
5.0.1 is passed. We are looking for much improved bbxm support in 1.1.

Saul, is it too late for a fix like the above to the u-boot md5 to get
into the point release?

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: beagle-xm more testing
  2011-05-16 19:25 ` Darren Hart
@ 2011-05-17  1:01   ` Robert Berger
  2011-05-17 15:21     ` Darren Hart
  0 siblings, 1 reply; 4+ messages in thread
From: Robert Berger @ 2011-05-17  1:01 UTC (permalink / raw)
  To: poky
  Cc: public-poky-SXX0g9bRc0uhPH1hqNUYSQ,
	public-gmane-G/ASJRsgvFgvW+L+VdN226ESeJV5RFUqQQ4Iyu8u01E

Hi,

On 05/16/2011 10:25 PM, Darren Hart wrote:
> 
> 
> The u-boot issues concern me the most. Unfortunately the dev-cut for
> 5.0.1 is passed. We are looking for much improved bbxm support in 1.1.
> 
> Saul, is it too late for a fix like the above to the u-boot md5 to get
> into the point release?
> 

In the meantime I also got the latest and greatest from git to work with
a couple of tweaks on the beagle-xm. If you want a proper patch for the
checksum it might take some time, since I'll be out of office ( it's 4
in the morning now) and I would like to test it a bit more before
sending it out - saw something funny with u-boot yesterday.

Regards,

Robert


..."In C++ it's harder to shoot yourself in the foot, but when you do,
you blow off your whole leg." - Bjarne Stroustrup

My public pgp key is available at:
http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x90320BF1




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: beagle-xm more testing
  2011-05-17  1:01   ` Robert Berger
@ 2011-05-17 15:21     ` Darren Hart
  0 siblings, 0 replies; 4+ messages in thread
From: Darren Hart @ 2011-05-17 15:21 UTC (permalink / raw)
  To: gmane
  Cc: public-poky-SXX0g9bRc0uhPH1hqNUYSQ, poky,
	public-gmane-G/ASJRsgvFgvW+L+VdN226ESeJV5RFUqQQ4Iyu8u01E



On 05/16/2011 06:01 PM, Robert Berger wrote:
> Hi,
> 
> On 05/16/2011 10:25 PM, Darren Hart wrote:
>>
>>
>> The u-boot issues concern me the most. Unfortunately the dev-cut for
>> 5.0.1 is passed. We are looking for much improved bbxm support in 1.1.
>>
>> Saul, is it too late for a fix like the above to the u-boot md5 to get
>> into the point release?
>>
> 
> In the meantime I also got the latest and greatest from git to work with
> a couple of tweaks on the beagle-xm.

Good to know, it didn't work for me last time I checked. I'll be
spending today and maybe tomorrow sorting out what happened since u-boot
was working on my xM at the 1.0 launch.

--
Darren

> If you want a proper patch for the
> checksum it might take some time, since I'll be out of office ( it's 4
> in the morning now) and I would like to test it a bit more before
> sending it out - saw something funny with u-boot yesterday.
> 
> Regards,
> 
> Robert
> 
> 
> ..."In C++ it's harder to shoot yourself in the foot, but when you do,
> you blow off your whole leg." - Bjarne Stroustrup
> 
> My public pgp key is available at:
> http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x90320BF1
> 
> 
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-05-17 15:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-15  8:58 beagle-xm more testing Robert Berger
2011-05-16 19:25 ` Darren Hart
2011-05-17  1:01   ` Robert Berger
2011-05-17 15:21     ` Darren Hart

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.