New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
Search found 23 matches
- 22 Jun 2014, 16:42
- Forum: B2 & B3 Support
- Topic: uboot update needed.
- Replies: 71
- Views: 165870
Re: uboot update needed.
Upgrading uboot has its risks. Unless you really know what you are doing, it is probably safer to put the wrapper around the kernel as described in the Debian email i included a link to.
- 22 Jun 2014, 13:21
- Forum: B2 & B3 Support
- Topic: uboot update needed.
- Replies: 71
- Views: 165870
Re: uboot update needed.
What would be nice is if excito invested some time to really test this kernel, and package it up cleanly in a Debian package and put out an experimental update to use it.
There is talk of a new long term kernel coming soon, maybe v3.16 or v3.17, which Debian would adopt. It would be nice if B3 was ...
There is talk of a new long term kernel coming soon, maybe v3.16 or v3.17, which Debian would adopt. It would be nice if B3 was ...
- 22 Jun 2014, 12:54
- Forum: B2 & B3 Support
- Topic: uboot update needed.
- Replies: 71
- Views: 165870
Re: uboot update needed.
It depends on how old your uboot is. If it is too old, you need to put a wrapper around the kernel. See:
http://lists.debian.org/debian-arm/2012/08/msg00128.html
You also need to enable CONFIG_ARM_APPENDED_DTB and make sure the .dtb file is appended to the kernel. I've not used archlinux so i have ...
http://lists.debian.org/debian-arm/2012/08/msg00128.html
You also need to enable CONFIG_ARM_APPENDED_DTB and make sure the .dtb file is appended to the kernel. I've not used archlinux so i have ...
- 23 Apr 2014, 15:07
- Forum: B2 & B3 Support
- Topic: uboot update needed.
- Replies: 71
- Views: 165870
Re: uboot update needed.
In light of the recent Heartbleed-Bug I feel a little uncomfortable with my B3 running Mouette's 3.0.xyz Custom Wheezy Kernel which is unable to update OpenSSL to a safe version.
There should be no relationship between kernel version and openssl version. You should be able to upgrade OpenSSL ...
There should be no relationship between kernel version and openssl version. You should be able to upgrade OpenSSL ...
- 04 Mar 2014, 06:32
- Forum: B2 & B3 Support
- Topic: uboot update needed.
- Replies: 71
- Views: 165870
Re: uboot update needed.
@asl did you submit that patch? Did it get accepted?
Yes, it is in linux-next now, and should be part of v3.15.
So that means the B3 is probably able to boot Kernel 3.15+ without updating the uboot-image?
You need a bit of magic when creating the image. See:
http://lists.debian.org/debian-arm ...
Yes, it is in linux-next now, and should be part of v3.15.
So that means the B3 is probably able to boot Kernel 3.15+ without updating the uboot-image?
You need a bit of magic when creating the image. See:
http://lists.debian.org/debian-arm ...
- 04 Mar 2014, 04:39
- Forum: B2 & B3 Support
- Topic: uboot update needed.
- Replies: 71
- Views: 165870
Re: uboot update needed.
Yes, it is in linux-next now, and should be part of v3.15.spitfire wrote:@asl did you submit that patch? Did it get accepted?
- 19 Jan 2014, 10:03
- Forum: B2 & B3 Support
- Topic: uboot update needed.
- Replies: 71
- Views: 165870
Re: uboot update needed.
Here is how i build the uImage:
/#!/bin/bash
tmp=$(tempfile)
# disable l2 caches
devio >> $tmp "wl 0xee3f3f11,4" # mrc 15, 1, r3, cr15, cr1, {0}
devio >> $tmp "wl 0xe3c33501,4" # bic r3, r3, #0x400000
devio >> $tmp "wl 0xee2f3f11,4" # mcr 15, 1, r3, cr15, cr1, {0}
# flush caches
devio >> $tmp ...
/#!/bin/bash
tmp=$(tempfile)
# disable l2 caches
devio >> $tmp "wl 0xee3f3f11,4" # mrc 15, 1, r3, cr15, cr1, {0}
devio >> $tmp "wl 0xe3c33501,4" # bic r3, r3, #0x400000
devio >> $tmp "wl 0xee2f3f11,4" # mcr 15, 1, r3, cr15, cr1, {0}
# flush caches
devio >> $tmp ...
- 19 Jan 2014, 04:48
- Forum: B2 & B3 Support
- Topic: uboot update needed.
- Replies: 71
- Views: 165870
Re: uboot update needed.
It is not possible to turn L2 cache off in the kernel. By the time the kernel is running, it is too late, corruption has already happened. There is some discussion of this here:
http://www.spinics.net/lists/arm-kernel/msg297709.html
What i do on my hardware, which has the broken u-boot, is ...
http://www.spinics.net/lists/arm-kernel/msg297709.html
What i do on my hardware, which has the broken u-boot, is ...
- 18 Jan 2014, 12:50
- Forum: B2 & B3 Support
- Topic: uboot update needed.
- Replies: 71
- Views: 165870
Re: uboot update needed.
I think you missed the part about uboot.
Anyway, i went back to the broken u-boot and appended the necessary hacks to turn off the L2 cache so that a modern kernel will boot.
My port for mainline will probably appear in Linux kernel 3.15. You can see the patches here:
http://www.spinics.net/lists ...
Anyway, i went back to the broken u-boot and appended the necessary hacks to turn off the L2 cache so that a modern kernel will boot.
My port for mainline will probably appear in Linux kernel 3.15. You can see the patches here:
http://www.spinics.net/lists ...
- 24 Dec 2013, 12:53
- Forum: B2 & B3 Support
- Topic: uboot update needed.
- Replies: 71
- Views: 165870
Re: uboot update needed.
Did you ever get networking working in uboot?
I have the same issue:
I have the same issue:
- Net: Net Initialization Skipped
No ethernet found.
- 05 Aug 2011, 05:14
- Forum: Development
- Topic: B3 buzzer + change front LED color
- Replies: 21
- Views: 60229
Re: B3 buzzer + change front LED color
You can use any of the standard LED trippers:
lunn@b3:/sys/class/leds/bubba3:blue:active$ cat trigger
[none] timer heartbeat default-on phy0rx phy0tx phy0assoc phy0radio phy0tpt
Here phy* is referring to the wlan PHY.
However, this is only currently available in my kernel. I ran into problems ...
lunn@b3:/sys/class/leds/bubba3:blue:active$ cat trigger
[none] timer heartbeat default-on phy0rx phy0tx phy0assoc phy0radio phy0tpt
Here phy* is referring to the wlan PHY.
However, this is only currently available in my kernel. I ran into problems ...
- 10 May 2011, 03:25
- Forum: Development
- Topic: i2c devices
- Replies: 3
- Views: 9768
Re: i2c devices
Hi Johannes
Yes, i'm on a B3.
WiFi? Is this the EEPROM containing the regulatory information?
Do you use a COTS card? Can you tell me what it is? Where i can get a data sheet?
Yes, i'm on a B3.
WiFi? Is this the EEPROM containing the regulatory information?
Do you use a COTS card? Can you tell me what it is? Where i can get a data sheet?
- 30 Mar 2011, 01:44
- Forum: B2 & B3 Support
- Topic: Downloaded file ownership
- Replies: 11
- Views: 17634
Re: Downloaded file ownership
Humm, interesting. In syslog i see:
Mar 29 14:48:31 b3 ftd: Torrent Chown failed: No such file or directory
Mar 29 14:54:47 b3 ftd: Torrent Chown failed: No such file or directory
So it tried to chown() some files, but hard to know which. Looking at the code, it chown()s a few different things ...
Mar 29 14:48:31 b3 ftd: Torrent Chown failed: No such file or directory
Mar 29 14:54:47 b3 ftd: Torrent Chown failed: No such file or directory
So it tried to chown() some files, but hard to know which. Looking at the code, it chown()s a few different things ...
- 30 Mar 2011, 01:09
- Forum: B2 & B3 Support
- Topic: Downloaded file ownership
- Replies: 11
- Views: 17634
Re: Downloaded file ownership
Hi Cheeseboy
Thanks for your reply.
I put this into hacking/development because i think it is a bug. I would of preferred to of put it into a bug tracking system like bugzilla, but i've not yet found one. Also, it probably does not affect many people, only those with NFS server to export the ...
Thanks for your reply.
I put this into hacking/development because i think it is a bug. I would of preferred to of put it into a bug tracking system like bugzilla, but i've not yet found one. Also, it probably does not affect many people, only those with NFS server to export the ...
- 29 Mar 2011, 12:50
- Forum: B2 & B3 Support
- Topic: ipv6 networking on B2?
- Replies: 1
- Views: 4454
Re: ipv6 networking on B2?
This is something on my TODO list, but for B3. Since this is basically a Debian image, and my current tunnel end point is a debian machine, i'm not expecting too many problems.
What i can say is that B3 works fine as a simple IPv6 device. It got an IPv6 via router advertisement. ssh, www, ntp etc ...
What i can say is that B3 works fine as a simple IPv6 device. It got an IPv6 via router advertisement. ssh, www, ntp etc ...