[beagleboard] Re: why does reading the DMTIMER clock take so long?

2014-01-17 Thread Uncle Joe
Wow, I completely forgot about this thread until someone just emailed me 
with a question. Thanks for your interest.

The file I opened is /dev/mem

int fd = open(/dev/mem, O_RDWR | O_SYNC); //O_SYNC makes the memory 
uncacheable

The file is a view of the entire 4GB physical memory space. You need to be 
root to open it obviously.

I also have a conjecture about why reading the clock is slow. The DM timer 
isn't part of the ARM architecture, so it has to read it externally. Today 
as processors integrate more and more devices onto the same chip, packet 
switched networks are used more and more instead of dedicated wires since a 
packet interface is general purpose and will have higher utilization.  But 
packet switching will increase latency.

I'd like to know why ARM didn't include a clock as part of the 
architectural state. Sure it can save some power, but it practically all 
embedded devices need a clock and reading an external one will use more 
power. At least one other computer architect agrees:

https://www.youtube.com/watch?v=J9kobkqAicU

At 22:30, Burton laments about the lack of a user readable clock on today's 
processors.

Yale

On Friday, May 24, 2013 12:19:58 AM UTC-7, fis@gmail.com wrote:

 Hi, I curentlly have some problem with reading DMTIMER. May I ask how 
 exactly you read the value of this counter? by which file is your 

 file descriptor *fd *referred (I mean when you use *mmap()*)?


 On Saturday, January 28, 2012 6:18:59 AM UTC+1, Uncle Joe wrote:

 I got a Beaglebone for robotics, where low latency operation is 
 important (especially, if I want to control 40 pins). I found the 
 sysfs interface to control GPIO is too slow (~2200 ns), so I resorted 
 to directly modifying the GPIO registers, which got the time down to 
 ~200 ns. Then I wanted to read the clock via 
 clock_gettime(CLOCK_REALTIME), but that's also very slow (1500 ns). 
 Again I resorted to directly reading the DMTIMER2 counter and got the 
 time down to about 100ns.  I still think this is a bit high. Can 
 someone enlighten me why it would take this long to read an on chip 
 value? 



 volatile uint32_t *dmtimer2_regs = (uint32_t *)mmap(NULL, 0x1000, 
 PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0x4804); 

 while (true) 
 { 
   uint32_t t0 = dmtimer2_regs[0x3c / 4]; 
   uint32_t t1 = dmtimer2_regs[0x3c / 4]; 
   cout  t1 - t0  endl;  // typically 5 
 clock ticks (each clock tick is ~41ns), hence each time stamp read 
 takes ~100ns 
 } 



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: Build a QT/11 application for beagleboard black by cross compiling from ubuntu

2014-01-17 Thread dlewin555
Louis,

Could you please remind me the pointer to this how to?
I'm sure this could be ok for me on Debian.

David

Le jeudi 16 janvier 2014 15:41:38 UTC+1, Louis McCarthy a écrit :

 You're welcome. Sometimes things sound so clear when I write them, but the 
 next daynot so much :)

 I've created a howto on my blog, for building Qt 5.2 targeted at a BBB 
 running Ubuntu. It is similar to the cloud-rocket site, but using the 
 Linaro toolchain, and I start from the very beginning: Ubuntu virtual 
 machine creation. I tried to be verbose, so maybe you can use it to double 
 check your host configuration. Search for Bare Metal Qt5.2 Beaglebone if 
 you are interested.

 Qt 5.2 is very different from 4.x (QPA vs QWS), so I am not recommending 
 that you change, especially if you have a working 4.x application. I am 
 still trying to work out the GUI bugs and figure out exactly what modules I 
 need to compile into Qt (the configure options have significantly changed 
 from 4.x to 5.2)

 Louis

 On Wednesday, January 15, 2014 2:15:11 PM UTC-6, William Pretty Security 
 wrote:

 Thanks for all the help Louis. I really appreciate it!

  

 As you have probably guessed I am new to cross-compiling J

  


 http://www.packtpub.com/building-a-home-security-system-with-beaglebone/book

  

 *From:* beagl...@googlegroups.com [mailto:beagl...@googlegroups.com] *On 
 Behalf Of *Louis McCarthy
 *Sent:* Wednesday, January 15, 2014 2:42 PM
 *To:* beagl...@googlegroups.com
 *Subject:* Re: [beagleboard] Re: Build a QT/11 application for 
 beagleboard black by cross compiling from ubuntu

  

 I guess I wasn't clear, you need to type 'arm-angstrom-linux-gnueabi-g++ 
 --version'. Just typing g++ will use your regular host compiler (not 
 toolchain cross compiler)

  

 If that gives a valid response, you then need to modify your qmake.conf 
 files or configure command line options (depending on Qt version and how 
 you configured it) to point to the full binary name, not just g++.

  

 From the error message, I doubt the error is in qabstractanimation.cpp, 
 but you can look around for a local qmake.conf file, for that module, that 
 may be pointing to the wrong g++.

 Louis


 On Tuesday, January 14, 2014 5:30:22 PM UTC-6, William Pretty Security 
 wrote:

 *From:* beagl...@googlegroups.com [mailto:beagl...@googlegroups.com] *On 
 Behalf Of *Louis McCarthy
 *Sent:* Tuesday, January 14, 2014 12:23 PM
 *To:* beagl...@googlegroups.com
 *Subject:* Re: [beagleboard] Re: Build a QT/11 application for 
 beagleboard black by cross compiling from ubuntu

  

 Correction, export PATH=$PATH:/usr/local/angstrom/arm/bin

  

 I forgot the last bin.

 On Tuesday, January 14, 2014 11:20:46 AM UTC-6, Louis McCarthy wrote:

 Did you install the right toolchain for your host, 32 bit or 64 bit. If 
 64 bit you need to include the ia32-libs (apt-get install).

  

 I would also add /usr/local/angstrom/arm/ to your path:

 export PATH=$PATH:/usr/local/angstrom/arm

  

 Then try the arm-[tab][tab] again.

 Here is the result of that:

  

 beaglebone@ubuntu:~$  export PATH=$PATH:/usr/local/angstrom/arm/bin

 beaglebone@ubuntu:~$ g++ --version

 g++ (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1

 Copyright (C) 2013 Free Software Foundation, Inc.

 This is free software; see the source for copying conditions.  There is NO

 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR 
 PURPOSE.

  

 Also I put a dash before the “check” by mistake, however the info may be 
 of use:

  

 beagl...@ubuntu:~/qt-4.8.5-beagle$ make -check

 make: invalid option -- 'c'

 make: invalid option -- 'c'

 Usage: make [options] [target] ...

 This program built for x86_64-pc-linux-gnu

 Report bugs to bug-...@gnu.org

  

 I think there must be a syntax error in qabstractanimation.cpp ?

 It is the only code that fails “make check”

  

 cd src/corelib/  make -f Makefile check

 make[1]: Entering directory `/home/beaglebone/qt-4.8.5-beagle/src/corelib'

 /home/beaglebone/qt-4.8.5-beagle/bin/moc -DQT_SHARED -DQT_BUILD_CORE_LIB 
 -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS 
 -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER 
 -DELF_INTERPRETER=\/lib64/ld-linux-x86-64.so.2\ -DHB_EXPORT=Q_CORE_EXPORT 
 -DQT_NO_DEBUG -I../../mkspecs/qws/linux-am335x-g++ -I. -I../../include 
 -I../../include/QtCore -I.rcc/release-shared-emb-arm -Iglobal 
 -I../3rdparty/zlib -I../3rdparty/harfbuzz/src -I../3rdparty/md5 
 -I../3rdparty/md4 -I.moc/release-shared-emb-arm 
 animation/qabstractanimation.h -o 
 .moc/release-shared-emb-arm/moc_qabstractanimation.cpp

 /usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/bin/g++ -c -pipe 
 -fno-exceptions -O3 -march=armv7-a -mtune=cortex-a8 -mfpu=neon 
 -mfloat-abi=softfp -Wall -W -D_REENTRANT -fPIC -DQT_SHARED 
 -DQT_BUILD_CORE_LIB -DQT_NO_USING_NAMESPACE -DQT_NO_CAST_TO_ASCII 
 -DQT_ASCII_CAST_WARNINGS -DQT_MOC_COMPAT -DQT_USE_QSTRINGBUILDER 
 -DELF_INTERPRETER=\/lib64/ld-linux-x86-64.so.2\ -DHB_EXPORT=Q_CORE_EXPORT 
 

[beagleboard] Re: Is opkg update / opkg upgrade still not advisable on a BBB?

2014-01-17 Thread kenthompson1
This has yet to happen to me and I've performed many updates and upgrades.

On Thursday, January 16, 2014 2:33:30 PM UTC-5, Chris Frankowski wrote:

 I've been playing around with my BBB for a few days now, and my continuous 
 googling has turned up many posts that say running opkg upgrade locks up 
 their BBB.
 Is this still happening?




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Prevent Connman from glomming port 53

2014-01-17 Thread Ken Thompson
I removed connman as it prevented me from using hostapd.  That seems to be 
the best route to fix conflicts with it.

On Tuesday, January 7, 2014 12:37:19 AM UTC-5, Drew Northup wrote:

 Is there some way to prevent Connman from glomming onto port 53? It 
 isn't a proper configurable DNS server so it should not ever be taking 
 control over that port. (I'd like to run a proper BIND instance there 
 instead.)


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: beaglebone black control by smartphone running on android

2014-01-17 Thread kenthompson1
You would have to write an application/service for your beaglebone that can 
accept connections/commands.  For example, you can write a C++, Java, or 
Python socket server to accept connections from external devices (like your 
android phone).  On your phone you need to write an application which 
connects/transmits messages to your beaglebone.  You can find simple python 
socket servers by googleing.  Likewise, you can find android examples of a 
TCP client (in java maybe?)

Good luck

On Thursday, January 16, 2014 9:30:00 AM UTC-5, ankush...@gmail.com wrote:

 First of all i want to make this very clear that i am newbie to this 
 exciting world of beaglebone so that i don't sound stupid. I started 
 working upon it. i tried to run a simple dc motor using GPIO pins by 
 python. It worked as i thought. I am thinking to take it a step further. I 
 want to control this motor using my smartphone which runs on android. I 
 know a bit of java, but don't have any damn idea how to do so? 

 Anyone with a clue please do help

 Thanks in advance


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Way to BBB for both LCD cape and AIN??

2014-01-17 Thread Taegyun Jeon

Hi, all members.

Recently,I implement several things on BBB as ECG analyzer.
Without LCD cape, I access AIN pins like below

echo cape-bone-iio  /sys/devices/bone_capemgr.*/slots
find / -name AIN1
*cat /sys/devices/ocp.2/helper.14/AIN1*  

To visualize the input signals, I connected BBB with 4 LCD cape from 
BeagleBone Black store (http://elinux.org/CircuitCo:BeagleBone_LCD4). 

When I use this LCD cape, the the virtual cape for ADC and AIN doesn't work 
anymore. 

Is there any way to use both LCD cape and AIN? 

Thanks in advance.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: [ANNOUNCE] [OFFTOPIC] Xvisor ARM with and/or without virtualization extensions

2014-01-17 Thread in1004kyu
Hi, I don't know how can I run Xvisor that supports Cortex-A15 Without VE.
I just can find manual - How to run Xvisor that supports Cortex-A15 With VE.
Without VE, hypervisor handles sensitive instructions using hypercall.
So I want to know how Xvisor handles sensitive instructions using hypercall 
and converting sensitive instruction, without trapemulation. 
I want to run Xvisor that supports Cortex-A15 Without VE. 
How can I run Xvisor at Cortex-A15 Without VE.

2012년 4월 24일 화요일 오전 6시 36분 34초 UTC-7, Anup Patel 님의 말:

 Xvisor (eXtensible Versatile hypervISOR) is an open source bare-metal
 monolithic hypervisor, which aims towards providing virtualization 
 solution,
 which is light-weight, portable, and flexible with small memory foot print
 and less overhead. It is distributed under GNU Public License (GPLv2).

 Xvisor has most of the features expected from a modern full-fledged 
 hypervisor,
 such as:
 - Tree based configuration
 - Tickless and high resolution timekeeping
 - Wall-clock for tracking real-time
 - Threading framework
 - Host device driver framework
 - CPU virtualization
 - Address space virtualization
 - IO device emulation framework
 - Pass through hardware access
 - Dynamic guest creation/destruction
 - Serial port virtualization
 - Management terminal

 The ARM port of Xvisor (or Xvisor ARM) supports a wide range of ARM 
 processors
 namely:
 - ARM9 (Boards: VersatilePB)
 - Cortex-A8 (Boards: Realview-PB-A8)
 - OMAP3 (Boards: BeagleBoard-xM)
 - Cortex-A9 (UP) (Boards: Vexpress-A9)
 - Cortex-A15 (UP) Without VE (Boards: Vexpress-A15)
 - Cortex-A15 (UP) With VE (Boards: Vexpress-A15)

 For all supported ARM processors Xvisor ARM is able to boot multiple 
 unmodified
 Linux-3.0.4 guest with a fairly interactive and smooth Busybox 0.19.2 
 console.

 On real hardware specifically BeagleBoard-xM (OMAP3 @ 600 MHz) we get near
 native CPU performance (i.e. Native Linux 3.0.4 gives 1120 DMIPS whereas 
 Linux
 3.0.4 running as guest on Xvisor ARM gives 960 DMIPS)

 Please try out our Xivsor Cortex-A15 demo on ARM Fast Models 7.0 and/or
 Linaro QEMU (2.02 or higher). To download the demo tarball visit:
 https://docs.google.com/open?id=0B0ABS_s60oP_WjNQQ0QtUzNmdmc

 Xvisor is currently hosted on Github, to clone or download source code 
 please
 visit following links:
 Wiki: https://github.com/xvisor/xvisor/wiki
 Mainline Repository: https://github.com/xvisor/xvisor
 Stagging Repository: https://github.com/avpatel/xvisor-next

 Our developer mailing list is xvisor-devel[at]googlegroups[
 dot]com, please feel free to post your queries or join our development
 mailing list.



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] How can I use the BBB with both 4 LCD cape and ADC?

2014-01-17 Thread Taegyun Jeon
Hi, 

I want to use BBB as ECG analyzer.
So, I connected BBB with 4 LCD cape from BeagleBone Black store (
http://elinux.org/CircuitCo:BeagleBone_LCD4).
When I use this LCD cape, the the virtual cape for ADC and AIN doesn't work 
anymore.

Is there any way to use both LCD cape and analog input?



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Beagleboard-xM DVSDK4.01 Encoder not working

2014-01-17 Thread xiaominthere
Hi,I face the same problem,did you successfully complete it?
Thanks a lot.

On Tuesday, July 19, 2011 12:22:39 AM UTC+8, Naveeen Kumar S wrote:

 Hello, 

 I have installed DVSDK 4.01 on Beagleboard-xM successfully. 
 I am able to run decode demos successfully, but i am not know how to 
 use encode command 

  ./encode -v /usr/share/ti/data/videos/davincieffect.mpeg4 
 Encode demo started. 
 Error: Failed to detect video standard, video input connected? 


 Basically i  extracted Raw video from the .mp4/.avi file using FFMPEG. 
 [FFMPEG installed in my Linux PC]. Then i tired to give this raw video 
 as the input the Encoder software but it didn't work, Does DVSDK 
 supports this operation? 



 Question: 
 1) Does DVSDK Encoders support file based Encoding?? 

 2) From where does the Encoder software gets put from?? 

 3) How to install FFMPEG into DVSDK 4.01??

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] issue about mmc0

2014-01-17 Thread 程实


Hi, all

The following are DTS for mmc0 in my am335x based board with Linux-3.12:

mmc0: mmc@0x4806 {
compatible = ti,omap4-hsmmc;
pinctrl-names = default;
pinctrl-0 = mmc0_pins;
reg = 0x4806 0x400;
interrupts = 64;
ti,hwmods = mmc1;
bus-width = 4;
max-frequency = 5000; /* 50MHz */
cd-gpios = gpio2 1 GPIO_ACTIVE_HIGH; /* SD_DET, GPIO_ACTIVE_HIGH = 
0, GPIO_ACTIVE_LOW = 1 */
/*wp-gpios = gpiox y 0;*/
ti,dual-volt;
vmmc-supply = vmmc; /* phandle to regulator node */
ti,non-removable;
dmas = edma 43/* read channel */
edma 42; /* write channel */
dma-names = rx, tx;
status = okay;
};

mmc driver (omap_hsmmc.c) can be loaded, and the driver can detect state of 
card inserted or removed. But device node /dev/mmcblk.0 can not be found 
unless a pr_info() is placed in function omap_hsmmc_request(..). As my 
understanding, the pr_info() plays a role of delay, which means something 
is not ready. Need some help to figure it out. Thanks!

BR

Cheng Shi

 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Not accepting a resolution below 640x480

2014-01-17 Thread pmadziakapita
I am trying to deploy a Simulink model to the BeagleBoard XM that has an 
output dependency on the size of the resolution. Ultimately if I use 
640x480 the model doesn't even run on the BeagleBoard. To try and make it 
work more efficiently I reduced the resolution to 320x240 but when deployed 
to the BeagleBoard the HDMI screen I am using immediately goes black and 
nothing happens.

Is there some sort of setting I need to change to allow me to deploy with 
smaller resolutions?

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: chipsee beaglebone lcd/dvi expansion kernel support

2014-01-17 Thread robinvansteenbergen
I have a Chipsee screen with the original DVD, but the Linux image which is 
on the DVD is corrupt. I am also looking for a working pre-built image (or 
a kernel package) for either Debian or Ubuntu.

On Saturday, January 4, 2014 4:17:33 PM UTC+1, Mahammad wrote:

 Hi Luke... if you are still looking for the DVD.. I think one post here 
 has a link to download the linux branch from the DVD. If you are looking 
 for the full dvd it is about 4GB compressed. Let me know if you still need 
 it so I can upload it for you. And please make sure it is not copyrighted.









 On Thursday, December 26, 2013 12:47:39 AM UTC+2, sol...@gmail.com wrote:

 Dear all,

 I am new to this forum. My friend helped me to buy the Chipsee touch LCD 
 from China but it comes without a DVD/CD! Is there any link that I can 
 download it as Chipsee people are not very helpful at all in my case!

 Thanks very much!

 Kind regards,

 Luke 

 tripzero於 2012年5月22日星期二UTC+1上午6時27分07秒寫道:

 Anyone gotten the chipsee lcd cape working with ubuntu or debian?


 cape found here:
 http://www.tigal.com/product/2559

 chipsee's website:
 http://www.chipsee.com/beaglebone-exp.html




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Board isnot powering up

2014-01-17 Thread ansu . 4u
Hello Group,
Good day.  Please bear with me, as I'm a newbie to 
Beagle Bone Black. Just got the board(Rev-A5A) a few days back. Right since 
then, I've been experiencing this issue of the board not powering up using 
the DC power adapter(5V/1A) that I purchased along with it. Upon connecting 
the power supply  pressing the Power button as indicated in the manual, 
the blue led(D1 as per schematics) blinks faintly  nothing happens. I have 
checked the power supply output of the adapter and that shows 5V DC. 
   However, interestingly, upon connecting the USB cable the board powers 
ON(blue led D1 glows, followed by the other 4 leds D2-D5) and was booting 
up properly, up until now. Presently, I observe that the board is not 
booting any more even when powered via USB : The Led D1 lights up in full 
brightness  stays as such. No further activity is seen on the board nor 
any messages appear on the serial console. There is no change in the 
original behavior scenario either - i.e., powering up via the power supply 
has the same state as explained. Please help.
Thanks in advance.

P.S : I'm posting this as a new one as I'm unable to relate this issue 
exactly with similar matching posts.

Regards,
Ansuman

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] PWM ADC on BBB using C++

2014-01-17 Thread saishrustee

I am new to Beaglebone black  embedded linux programming. I am looking for 
C/C++ library for PWM and ADC. 

I am compiling the C++ library given by SaadAhmad but i am unable to run 
the binary file, it is returning with errors like terminate called after 
throwing an instance of 'std::ios_base::failure'
  what():  basic_ios::clear
Aborted

Any body got a C/C++ library for PWM  ADC.

Thanks  Regards,
Sai 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Kernel and device tree independence

2014-01-17 Thread cwrseckford
I thought one of the advantages of the device tree setup was that it was 
independent of the kernel,
but apparently a fair amount of porting work is still needed between kernel 
versions.  Does anyone
know how roughly how much of a DT can be kept, from kernel to kernel?

Will

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Kernel and device tree independence

2014-01-17 Thread Robert Nelson
On Fri, Jan 17, 2014 at 8:22 AM,  cwrseckf...@gmail.com wrote:
 I thought one of the advantages of the device tree setup was that it was
 independent of the kernel,
 but apparently a fair amount of porting work is still needed between kernel
 versions.  Does anyone
 know how roughly how much of a DT can be kept, from kernel to kernel?

Give it another year or so, some DT bindings are frozen, but some are
still in flux.  kernel developers are planning to eventually move the
dts's to a separate repo, when that actually happens, you'll have the
answer your looking for.

Regards,

-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Using cape outline

2014-01-17 Thread Philip Polstra
Making a cape and trying to use adafruit eagle library with cape outline.
No clue on how to use the outline. Anyone else used this before? Don't see
it in the library either.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: CLKOUT2 access in RCN 3.12 kernel?

2014-01-17 Thread Drew Moore
I'm guessing that this is arch/arm/boot/dts/am335x-evm.dts.
In 3.8 there is no mention of clkout2, the pinmux grabs lcd_pins_s0
In 3.12 in a similar-looking section, lcd_pins_s0 is replaced by clkout2_pin

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Problem BBB is off!

2014-01-17 Thread Gerald Coley
Did you try pushing the power button or unplugging the power/USB cable and
plugging it back in?

Gerald



On Fri, Jan 17, 2014 at 9:33 AM, feniell...@gmail.com wrote:

 Hi sorry for my english, i not speak english, i have a problem whit my
 beaglebone black, after giving the command poweroff the beaglebone  black
 as shut down, but now not working, all LEDs are off, also the LED power is
 off!! someone tell me what the problem is? thank you

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Problem BBB is off!

2014-01-17 Thread feniello . a
Hi sorry for my english, i not speak english, i have a problem whit my 
beaglebone black, after giving the command poweroff the beaglebone  black 
as shut down, but now not working, all LEDs are off, also the LED power is 
off!! someone tell me what the problem is? thank you

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: How to take backup image of updated image on sd card.

2014-01-17 Thread Dennis Cote


On Friday, January 17, 2014 4:27:58 AM UTC-7, Jai wrote:

 I am using beaglebone black with ubuntu precise available at 
 http://www.armhf.com/index.php/boards/beaglebone-black/#precise booting 
 from sd card. I have extended the partition on the sd card and have 
 installed ubuntu-desktop. Now I want to use my memory card for other 
 purpose. I would like to a backup of what is on my memory card now as a 
 image file and format my memory card after that and use for a different 
 purpose. And whenever I want I must be able to use win32 disk imager and 
 write the backup image and use it with ubuntu-desktop and other files that 
 I saved. Can this be done. If yes, how? 


You can use Win32DiskImager to make a backup of your SD card on your PC. 
Insert the SD card into your SD card reader, start Win32DiskImager, select 
the SD card in the device dropdown, select or type a file in the Image File 
area, and click on the Read button. This will copy the data from the SD 
card to an image file. You can use 7zip or something similar to compress 
the image file to save space. 

You can now format the SD card and use it for any other function.

Decompress and use the write option in Win32DiskImager to restore the image 
back to the SD card. 

HTH
Dennis Cote

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: Beaglebone Black won't power on, did I do something wrong? :(

2014-01-17 Thread Gerald Coley
Did you try pushing the power button or unplugging the power/USB cable and
plugging it back in?

Gerald



On Fri, Jan 17, 2014 at 10:12 AM, feniell...@gmail.com wrote:

 hello sorry for my english, I also had a problem with the BBB, after
 giving the command poweroff, the BBB is off, now the power led does not
 turn on when I put the usb cable and the power cable. you have any idea?

  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Beaglebone Black won't power on, did I do something wrong? :(

2014-01-17 Thread feniello . a


 hello sorry for my english, I also had a problem with the BBB, after 
 giving the command poweroff, the BBB is off, now the power led does not 
 turn on when I put the usb cable and the power cable. you have any idea?



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: Beaglebone Black won't power on, did I do something wrong? :(

2014-01-17 Thread Gerald Coley
Sounds like the board may have gotten zapped. Leave it unplugged for 30
minutes, all cables, and try it again. If is still does not work, then you
will need to get it looked at.

Gerald



On Fri, Jan 17, 2014 at 10:30 AM, feniell...@gmail.com wrote:

 I tried it, but the Power LED does not light, all the LEDs are off

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] BBB and ftdi problem

2014-01-17 Thread Krazeebee Saboo
Hi
I finished my first Android from 
http://processors.wiki.ti.com/index.php/TI-Android-JB-4.2.2-DevKit-4.1.1_DeveloperGuide
 
but i can't connect my usb to serial (using ftdi chip) to USB host on BBB. 
I try to re build kernel and enable device driver in kconfig but still not 
working . Please help

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] connecting a powered hub fixes the hotplug issue?

2014-01-17 Thread sriram
Hi,

Am wondering , connecting a powered usb hub to Beagle bone black before 
booting will fix the hotplug issue. That is, can I hotplug usb devices to 
the USB hub, provided USB hub was connected before booting the BBB.

Is there any hope this issue will be addressed in the new batch of boards 
under manufacturing?

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] connecting a powered hub fixes the hotplug issue?

2014-01-17 Thread Gerald Coley
It is not a HW issue.

Gerald



On Fri, Jan 17, 2014 at 10:42 AM, sri...@watchy.in wrote:

 Hi,

 Am wondering , connecting a powered usb hub to Beagle bone black before
 booting will fix the hotplug issue. That is, can I hotplug usb devices to
 the USB hub, provided USB hub was connected before booting the BBB.

 Is there any hope this issue will be addressed in the new batch of boards
 under manufacturing?

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] connecting a powered hub fixes the hotplug issue?

2014-01-17 Thread Robert Nelson
On Fri, Jan 17, 2014 at 10:42 AM,  sri...@watchy.in wrote:
 Hi,

 Am wondering , connecting a powered usb hub to Beagle bone black before
 booting will fix the hotplug issue. That is, can I hotplug usb devices to
 the USB hub, provided USB hub was connected before booting the BBB.

One trick I've used in the past on the classic beagle's, always have a
cheap usb-flash drive plugged into your usb hub.  As long as one
actual device is always connected, usb hotplug for other devices just
seems to work better..

Regards,

-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: CLKOUT2 access in RCN 3.12 kernel?

2014-01-17 Thread Drew Moore
Thanks for responding..

I did
grep clkout2 *.dts 
in both directories and found that clkout2 didn't show up in the 3.8 but 
did show up in 3.12
in 3.12 it shows up in am335x-evm.dts and also am335x-evmsk.dts.. (and 
dove-cubox.dts but I don't think that is related)

I also just noticed that it also shows up in am335x-bone-common.dtsi, 
(3.12) which now seems more likely to be the beaglebone related file.

Here's that chunk from my device tree file..

fragment@0 {
target = am33xx_pinmux;
__overlay__ {
gpmc_pins: pinmux_gpmc_pins {
pinctrl-single,pins = 
/* 0x20 = Fast, RX_enabled, pullup, pullup_enable, mode 
0 */
0x000 0x20/* gpmc_ad0.gpmc_ad0 MODE0 | INPUT | 
PULLUP */
0x004 0x20/* gpmc_ad1.gpmc_ad1 MODE0 | INPUT | 
PULLUP */
0x008 0x20/* gpmc_ad2.gpmc_ad2 MODE0 | INPUT | 
PULLUP */
0x00C 0x20/* gpmc_ad3.gpmc_ad3 MODE0 | INPUT | 
PULLUP */
0x010 0x20/* gpmc_ad4.gpmc_ad4 MODE0 | INPUT | 
PULLUP */
0x014 0x20/* gpmc_ad5.gpmc_ad5 MODE0 | INPUT | 
PULLUP */
0x018 0x20/* gpmc_ad6.gpmc_ad6 MODE0 | INPUT | 
PULLUP */
0x01C 0x20/* gpmc_ad7.gpmc_ad7 MODE0 | INPUT | 
PULLUP */
0x020 0x20/* gpmc_ad8.gpmc_ad8 MODE0 | INPUT | 
PULLUP */
0x024 0x20/* gpmc_ad9.gpmc_ad9 MODE0 | INPUT | 
PULLUP */
0x028 0x20/* gpmc_ad10.gpmc_ad10 MODE0 | INPUT | 
PULLUP */
0x02C 0x20/* gpmc_ad11.gpmc_ad11 MODE0 | INPUT | 
PULLUP */
0x030 0x20/* gpmc_ad12.gpmc_ad12 MODE0 | INPUT | 
PULLUP */
0x034 0x20/* gpmc_ad13.gpmc_ad13 MODE0 | INPUT | 
PULLUP */
0x038 0x20/* gpmc_ad14.gpmc_ad14 MODE0 | INPUT | 
PULLUP */
0x03C 0x20/* gpmc_ad15.gpmc_ad15 MODE0 | INPUT | 
PULLUP */

0x078 0x04/* gpmc_ben1.gpmc_dir MODE4 | OUTPUT */
0x080 0x00/* gpmc_cscn1.gpmc_cscn1 MODE0 | OUTPUT */
0x08C 0x00/* gpmc_clk.gpmc_clk MODE0 | OUTPUT */
0x090 0x00/* gpmc_advn_ale.gpmc_advn_ale MODE0 | 
OUTPUT */
0x094 0x00/* gpmc_oen_ren.gpmc_oen_ren MODE0 | 
OUTPUT */
0x098 0x00/* gpmc_wen.gpmc_wen MODE0 | OUTPUT */
0x09C 0x00/* gpmc_ben0_cle.gpmc_ben0_cle MODE0 | 
OUTPUT */
0x1b4 0x03/* xdma_event_intr1.clkout2 MODE3 | 
OUTPUT */
;
};
};
};

I used BB-BONE-CAM3 as a starting point but yes, I'm mostly guessing at 
what this stuff means.
My next guess is that the last line above is in the wrong section.. clkout2 
is not a gpmc pin.

I don't have any /include/ lines in my file.. just 
compatible = ti,beaglebone, ti,beaglebone-black;
from the CAM3 file I modified.



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] connecting a powered hub fixes the hotplug issue?

2014-01-17 Thread sriram
Thanks RobertCNelson.

Have you tried with a powered hub? I donot have a board with me. Would like 
to check this before buying.

On Friday, January 17, 2014 10:20:57 PM UTC+5:30, RobertCNelson wrote:

 On Fri, Jan 17, 2014 at 10:42 AM,  sri...@watchy.in javascript: 
 wrote: 
  Hi, 
  
  Am wondering , connecting a powered usb hub to Beagle bone black before 
  booting will fix the hotplug issue. That is, can I hotplug usb devices 
 to 
  the USB hub, provided USB hub was connected before booting the BBB. 

 One trick I've used in the past on the classic beagle's, always have a 
 cheap usb-flash drive plugged into your usb hub.  As long as one 
 actual device is always connected, usb hotplug for other devices just 
 seems to work better.. 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] connecting a powered hub fixes the hotplug issue?

2014-01-17 Thread sriram
Glad to hear that. 

On Friday, January 17, 2014 10:20:45 PM UTC+5:30, Gerald wrote:

 It is not a HW issue.

 Gerald



 On Fri, Jan 17, 2014 at 10:42 AM, sri...@watchy.in javascript: wrote:

 Hi,

 Am wondering , connecting a powered usb hub to Beagle bone black before 
 booting will fix the hotplug issue. That is, can I hotplug usb devices to 
 the USB hub, provided USB hub was connected before booting the BBB.

 Is there any hope this issue will be addressed in the new batch of boards 
 under manufacturing?

 -- 
 For more options, visit http://beagleboard.org/discuss
 --- 
 You received this message because you are subscribed to the Google Groups 
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to beagleboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: Build a QT/11 application for beagleboard black by cross compiling from ubuntu

2014-01-17 Thread Louis McCarthy
@Bill
Can you run 'uname -a' from a terminal and post the results here?
What is the file name (or download link) of the angstrom toolchain that you 
downloaded?

@David
Sure. I have tried it with the Debian beta and it seems to be working.
http://armsdr.blogspot.com/2014/01/bare-metal-qt-52-on-beaglebone-black.html

Louis


On Thursday, January 16, 2014 12:21:09 PM UTC-6, William Pretty Security 
wrote:

 Ok;

  

 We have something weird going on here (?)

 I started with a fresh VM and just installed the tool chain, from the file 
 I had previously downloaded.

 I then gave myself root access and went to the “/usr/local/angstrom/bin” 
 directory.

  

 Here’s what happened:

  

 root@ubuntu:/usr/local/angstrom/arm/bin# arm-angstrom-linux-gnueabi-g++

 arm-angstrom-linux-gnueabi-g++: command not found

  

 root@ubuntu:/usr/local/angstrom/arm/bin# arm-angstrom-linux-gnueabi-g++ 
 --version

 arm-angstrom-linux-gnueabi-g++: command not found

  

  

 root@ubuntu:/usr/local/angstrom/arm/bin# ./arm-angstrom-linux-gnueabi-g++ 
 --version

 bash: ./arm-angstrom-linux-gnueabi-g++: No such file or directory

  

 When I type “ls –l” I get:

  

 -rwxr-xr-x 1 root root   483996 Mar 16  2011 
 arm-angstrom-linux-gnueabi-addr2line

 -rwxr-xr-x 1 root root   503544 Mar 16  2011 arm-angstrom-linux-gnueabi-ar

 -rwxr-xr-x 1 root root   853272 Mar 16  2011 arm-angstrom-linux-gnueabi-as

 -rwxr-xr-x 1 root root   483800 Mar 16  2011 
 arm-angstrom-linux-gnueabi-c++filt

 -rwxr-xr-x 1 root root   436563 Mar 16  2011 arm-angstrom-linux-gnueabi-cpp

 -rwxr-xr-x 1 root root   438687 Mar 16  2011 arm-angstrom-linux-gnueabi-g++

 -rwxr-xr-x 1 root root   434700 Mar 16  2011 arm-angstrom-linux-gnueabi-gcc

 -rwxr-xr-x 1 root root17422 Mar 16  2011 
 arm-angstrom-linux-gnueabi-gccbug

 -rwxr-xr-x 1 root root75976 Mar 16  2011 
 arm-angstrom-linux-gnueabi-gcov

 -rwxr-xr-x 1 root root  3184888 Mar 16  2011 arm-angstrom-linux-gnueabi-gdb

 -rwxr-xr-x 1 root root  3184892 Mar 16  2011 
 arm-angstrom-linux-gnueabi-gdbtui

 -rwxr-xr-x 1 root root   442039 Mar 16  2011 
 arm-angstrom-linux-gnueabi-gfortran

 -rwxr-xr-x 1 root root   538904 Mar 16  2011 
 arm-angstrom-linux-gnueabi-gprof

 -rwxr-xr-x 1 root root   873752 Mar 16  2011 arm-angstrom-linux-gnueabi-ld

 -rwxr-xr-x 1 root root   490292 Mar 16  2011 arm-angstrom-linux-gnueabi-nm

 -rwxr-xr-x 1 root root   629144 Mar 16  2011 
 arm-angstrom-linux-gnueabi-objcopy

 -rwxr-xr-x 1 root root   759480 Mar 16  2011 
 arm-angstrom-linux-gnueabi-objdump

 -rwxr-xr-x 1 root root   503548 Mar 16  2011 
 arm-angstrom-linux-gnueabi-ranlib

 -rwxr-xr-x 1 root root   261868 Mar 16  2011 
 arm-angstrom-linux-gnueabi-readelf

 -rwxr-xr-x 1 root root   748476 Mar 16  2011 arm-angstrom-linux-gnueabi-run

 -rwxr-xr-x 1 root root   483988 Mar 16  2011 
 arm-angstrom-linux-gnueabi-size

 -rwxr-xr-x 1 root root   483960 Mar 16  2011 
 arm-angstrom-linux-gnueabi-strings

 -rwxr-xr-x 1 root root   629144 Mar 16  2011 
 arm-angstrom-linux-gnueabi-strip

 -rwxr-xr-x 1 root root   281569 Mar 16  2011 i686-linux-libtool

 -rwxr-xr-x 1 root root   281569 Mar 16  2011 libtool

 -rwxr-xr-x 1 root root68311 Mar 16  2011 libtoolize

 .

 .

 .

 Looks to me like the program is executable. Could it be damaged or am I 
 doing something wrong ?

  

 Bill

  

  

 *From:* beagl...@googlegroups.com javascript: [mailto:
 beagl...@googlegroups.com javascript:] *On Behalf Of *Louis McCarthy
 *Sent:* Wednesday, January 15, 2014 2:42 PM
 *To:* beagl...@googlegroups.com javascript:
 *Subject:* Re: [beagleboard] Re: Build a QT/11 application for 
 beagleboard black by cross compiling from ubuntu

  

 I guess I wasn't clear, you need to type 'arm-angstrom-linux-gnueabi-g++ 
 --version'. Just typing g++ will use your regular host compiler (not 
 toolchain cross compiler)

  

 If that gives a valid response, you then need to modify your qmake.conf 
 files or configure command line options (depending on Qt version and how 
 you configured it) to point to the full binary name, not just g++.

  

 From the error message, I doubt the error is in qabstractanimation.cpp, 
 but you can look around for a local qmake.conf file, for that module, that 
 may be pointing to the wrong g++.

 Louis


 On Tuesday, January 14, 2014 5:30:22 PM UTC-6, William Pretty Security 
 wrote:

 *From:* beagl...@googlegroups.com [mailto:beagl...@googlegroups.com] *On 
 Behalf Of *Louis McCarthy
 *Sent:* Tuesday, January 14, 2014 12:23 PM
 *To:* beagl...@googlegroups.com
 *Subject:* Re: [beagleboard] Re: Build a QT/11 application for 
 beagleboard black by cross compiling from ubuntu

  

 Correction, export PATH=$PATH:/usr/local/angstrom/arm/bin

  

 I forgot the last bin.

 On Tuesday, January 14, 2014 11:20:46 AM UTC-6, Louis McCarthy wrote:

 Did you install the right toolchain for your host, 32 bit or 64 bit. If 64 
 bit you need to include the ia32-libs (apt-get install).

  

 I would also add /usr/local/angstrom/arm/ to 

[beagleboard] Re: BBB: after powerfailure BBB is no longer booting from eMMC

2014-01-17 Thread Martin Sperl
Hi!

OK - I have now taken the minimal image of Debian from: 
http://www.armhf.com/index.php/boards/beaglebone-black/

And I have copied it to the emmc as well as to an SD card.

Again the same observation: the image boots from SD, but nothing happens on 
the eMMC.

Checksums of the boot partitions are:
root@debian-armhf:~# md5sum /dev/mmcblk*p1 
af7a970e36b360f6b5b65aab04701b65  /dev/mmcblk0p1
af7a970e36b360f6b5b65aab04701b65  /dev/mmcblk1p1

So I wonder what happens BEFORE UBOOT starts (or MLO for that matter).
Is it possible that the initial pre-boot loader for the board has gotten 
corrupted for the eMMC case?

Thanks,
   Martin

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: Build a QT/11 application for beagleboard black by cross compiling from ubuntu

2014-01-17 Thread Don deJuan
On 01/17/2014 09:41 AM, Louis McCarthy wrote:
 @Bill
 Can you run 'uname -a' from a terminal and post the results here?
 What is the file name (or download link) of the angstrom toolchain
 that you downloaded?

 @David
 Sure. I have tried it with the Debian beta and it seems to be working.
 http://armsdr.blogspot.com/2014/01/bare-metal-qt-52-on-beaglebone-black.html

 Louis


 On Thursday, January 16, 2014 12:21:09 PM UTC-6, William Pretty
 Security wrote:

 Ok;

  

 We have something weird going on here (?)

 I started with a fresh VM and just installed the tool chain, from
 the file I had previously downloaded.

 I then gave myself root access and went to the
 “/usr/local/angstrom/bin” directory.

  

 Here’s what happened:

  

 root@ubuntu:/usr/local/angstrom/arm/bin#
 arm-angstrom-linux-gnueabi-g++

 arm-angstrom-linux-gnueabi-g++: command not found

  

 root@ubuntu:/usr/local/angstrom/arm/bin#
 arm-angstrom-linux-gnueabi-g++ --version

 arm-angstrom-linux-gnueabi-g++: command not found

  

  

 root@ubuntu:/usr/local/angstrom/arm/bin#
 ./arm-angstrom-linux-gnueabi-g++ --version

 bash: ./arm-angstrom-linux-gnueabi-g++: No such file or directory

  

 When I type “ls –l” I get:

  

 -rwxr-xr-x 1 root root   483996 Mar 16  2011
 arm-angstrom-linux-gnueabi-addr2line

 -rwxr-xr-x 1 root root   503544 Mar 16  2011
 arm-angstrom-linux-gnueabi-ar

 -rwxr-xr-x 1 root root   853272 Mar 16  2011
 arm-angstrom-linux-gnueabi-as

 -rwxr-xr-x 1 root root   483800 Mar 16  2011
 arm-angstrom-linux-gnueabi-c++filt

 -rwxr-xr-x 1 root root   436563 Mar 16  2011
 arm-angstrom-linux-gnueabi-cpp

 -rwxr-xr-x 1 root root   438687 Mar 16  2011
 arm-angstrom-linux-gnueabi-g++

 -rwxr-xr-x 1 root root   434700 Mar 16  2011
 arm-angstrom-linux-gnueabi-gcc

 -rwxr-xr-x 1 root root17422 Mar 16  2011
 arm-angstrom-linux-gnueabi-gccbug

 -rwxr-xr-x 1 root root75976 Mar 16  2011
 arm-angstrom-linux-gnueabi-gcov

 -rwxr-xr-x 1 root root  3184888 Mar 16  2011
 arm-angstrom-linux-gnueabi-gdb

 -rwxr-xr-x 1 root root  3184892 Mar 16  2011
 arm-angstrom-linux-gnueabi-gdbtui

 -rwxr-xr-x 1 root root   442039 Mar 16  2011
 arm-angstrom-linux-gnueabi-gfortran

 -rwxr-xr-x 1 root root   538904 Mar 16  2011
 arm-angstrom-linux-gnueabi-gprof

 -rwxr-xr-x 1 root root   873752 Mar 16  2011
 arm-angstrom-linux-gnueabi-ld

 -rwxr-xr-x 1 root root   490292 Mar 16  2011
 arm-angstrom-linux-gnueabi-nm

 -rwxr-xr-x 1 root root   629144 Mar 16  2011
 arm-angstrom-linux-gnueabi-objcopy

 -rwxr-xr-x 1 root root   759480 Mar 16  2011
 arm-angstrom-linux-gnueabi-objdump

 -rwxr-xr-x 1 root root   503548 Mar 16  2011
 arm-angstrom-linux-gnueabi-ranlib

 -rwxr-xr-x 1 root root   261868 Mar 16  2011
 arm-angstrom-linux-gnueabi-readelf

 -rwxr-xr-x 1 root root   748476 Mar 16  2011
 arm-angstrom-linux-gnueabi-run

 -rwxr-xr-x 1 root root   483988 Mar 16  2011
 arm-angstrom-linux-gnueabi-size

 -rwxr-xr-x 1 root root   483960 Mar 16  2011
 arm-angstrom-linux-gnueabi-strings

 -rwxr-xr-x 1 root root   629144 Mar 16  2011
 arm-angstrom-linux-gnueabi-strip

 -rwxr-xr-x 1 root root   281569 Mar 16  2011 i686-linux-libtool

 -rwxr-xr-x 1 root root   281569 Mar 16  2011 libtool

 -rwxr-xr-x 1 root root68311 Mar 16  2011 libtoolize

 .

 .

 .

 Looks to me like the program is executable. Could it be damaged or
 am I doing something wrong ?

  

 Bill

  

  

 *From:*beagl...@googlegroups.com javascript:
 [mailto:beagl...@googlegroups.com javascript:] *On Behalf Of
 *Louis McCarthy
 *Sent:* Wednesday, January 15, 2014 2:42 PM
 *To:* beagl...@googlegroups.com javascript:
 *Subject:* Re: [beagleboard] Re: Build a QT/11 application for
 beagleboard black by cross compiling from ubuntu

  

 I guess I wasn't clear, you need to type
 'arm-angstrom-linux-gnueabi-g++ --version'. Just typing g++ will
 use your regular host compiler (not toolchain cross compiler)

  

 If that gives a valid response, you then need to modify your
 qmake.conf files or configure command line options (depending on
 Qt version and how you configured it) to point to the full binary
 name, not just g++.

  

 From the error message, I doubt the error is in
 qabstractanimation.cpp, but you can look around for a local
 qmake.conf file, for that module, that may be pointing to the
 wrong g++.

 Louis


 On Tuesday, January 14, 2014 5:30:22 PM UTC-6, William Pretty
 Security wrote:

 *From:*beagl...@googlegroups.com
 [mailto:beagl...@googlegroups.com] *On Behalf Of *Louis McCarthy
 *Sent:* Tuesday, January 14, 2014 12:23 PM
 *To:* 

Re: [beagleboard] Re: BBB: after powerfailure BBB is no longer booting from eMMC

2014-01-17 Thread Martin Sperl


On Friday, January 17, 2014 6:47:22 PM UTC+1, RobertCNelson wrote:

 Grab a usb-serial adapter, you question can usually be answered in one 
 boot.. 



I have been running _everything_ off  the serial since the beginning of 
this thread.

the Serial shows nothing what so ever if I do not press the boot button 
for SD and power the device
no C every second or so or anything else...

But with the boot button pressed during power up I get:

U-Boot SPL 2013.10-00249-g15c5cdf (Nov 17 2013 - 16:35:11)
reading args
spl: error reading image args, err - -1
reading u-boot.img
reading u-boot.img


U-Boot 2013.10-00249-g15c5cdf (Nov 17 2013 - 16:35:11)

I2C:   ready
DRAM:  512 MiB
WARNING: Caches not enabled
NAND:  0 MiB
MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
Attempt to read outside the flash area
*** Warning - readenv() failed, using default environment

Net:   ethaddr not set. Validating first E-fuse MAC
cpsw, usb_ether
Hit any key to stop autoboot:  0 Enter code here...

the first C line is actually one C after the other with a spacing 
of about 1 second.
then uboot takes over.

Without pressing boot I get nothing at all on the serial line...

That is what surprises me so much and why I fear that the pre-bootloader is 
not working as expected...

Martin

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: BBB: after powerfailure BBB is no longer booting from eMMC

2014-01-17 Thread Martin Sperl


On Friday, January 17, 2014 6:59:44 PM UTC+1, RobertCNelson wrote:


 The CC show you incorrectly flashed the bootloader (MLO) onto the eMMC.. 


maybe I miss something about how to flash the MLO - so far I have always 
assumed that the MLO sits in the first partition of the emmc and SD card 
which gets loaded and executed and which takes the next steps...

And - as shown via md5sum those partitions are identical:
root@debian-armhf:~# md5sum /dev/mmcblk*p1
af7a970e36b360f6b5b65aab04701b65  /dev/mmcblk0p1
af7a970e36b360f6b5b65aab04701b65  /dev/mmcblk1p1
root@debian-armhf:~# 

So what is missing?

Thanks, Martin

P.s: I filled the eMMC like this:  
xzcat /tmp/debian-wheezy-7.2-armhf-3.8.13-bone30.img.xz  /dev/mmcblk1
same as I did to put the image on the SD-card from a CentOS box (but to 
/dev/sdc to write to the SD card).

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: BBB: after powerfailure BBB is no longer booting from eMMC

2014-01-17 Thread Robert Nelson
 maybe I miss something about how to flash the MLO - so far I have always
 assumed that the MLO sits in the first partition of the emmc and SD card
 which gets loaded and executed and which takes the next steps...

Well the correct way to just flash the MLO is on a fresh drive is:

http://eewiki.net/display/linuxonarm/BeagleBone+Black#BeagleBoneBlack-SetupmicroSD/SDcard

 And - as shown via md5sum those partitions are identical:
 root@debian-armhf:~# md5sum /dev/mmcblk*p1
 af7a970e36b360f6b5b65aab04701b65  /dev/mmcblk0p1
 af7a970e36b360f6b5b65aab04701b65  /dev/
 mmcblk1p1
 root@debian-armhf:~#

 So what is missing?

 Thanks, Martin

 P.s: I filled the eMMC like this:
 xzcat /tmp/debian-wheezy-7.2-armhf-3.8.13-bone30.img.xz  /dev/mmcblk1
 same as I did to put the image on the SD-card from a CentOS box (but to
 /dev/sdc to write to the SD card).

Your going to have to ask the armhf.com guy directly..

I know this eMMC flasher works, as i'm having users beta test it
right now as the angstrom replacement factory image

http://rcn-ee.net/deb/testing/2014-01-16/BBB-eMMC-flasher-debian-7.3-2014-01-16-2gb.img.xz

Just, flash a 2GB or greater microSD

sudo dd if=./BBB-eMMC-flasher-debian-7.3-2014-01-16-2gb of=/dev/sdX

Stick in BBB, power up.. wait about 14 minutes for all the LEDS to be
on.. Remove microSD and power off..

Regards,
-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: BBB: after powerfailure BBB is no longer booting from eMMC

2014-01-17 Thread Martin Sperl

Here to show that the content inside the first partition are identical:
root@debian-armhf:~# mount /dev/mmcblk1p1  /mnt
root@debian-armhf:~# md5sum /mnt/*
edcfd600554d044f4fab684ab1afd105  /mnt/MLO
c8dcb2985802b00b5c6f1979e58836aa  /mnt/u-boot.img
2ae0ff2eae5713b88f6a1f30aaebd4d7  /mnt/uEnv.txt
root@debian-armhf:~# umount  /mnt
root@debian-armhf:~# mount /dev/mmcblk0p1  /mnt
root@debian-armhf:~# md5sum /mnt/*
edcfd600554d044f4fab684ab1afd105  /mnt/MLO
c8dcb2985802b00b5c6f1979e58836aa  /mnt/u-boot.img
2ae0ff2eae5713b88f6a1f30aaebd4d7  /mnt/uEnv.txt
root@debian-armhf:~# umount  /mnt

so everything is identical 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: BBB: after powerfailure BBB is no longer booting from eMMC

2014-01-17 Thread Martin Sperl
Thing is that I have tried the default Angstrom and other images as well - 
even those that flash the eMMC from SD automatically via emmc.sh.
None have been successfull - that is why I have taken the image that is 
supposedly also able to get installed directly to eMMC.

I will now give the image of yours a try - Downloading right now...

Martin

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: BBB: after powerfailure BBB is no longer booting from eMMC

2014-01-17 Thread Robert Nelson
On Fri, Jan 17, 2014 at 12:36 PM, Martin Sperl
warriorsofthewastelan...@gmail.com wrote:
 Thing is that I have tried the default Angstrom and other images as well -
 even those that flash the eMMC from SD automatically via emmc.sh.
 None have been successfull - that is why I have taken the image that is
 supposedly also able to get installed directly to eMMC.

Really none ?...

Umm, how are you flashing it?

ALL capes removed, NO USB, (ethernet can be plugged in), a real 5 volt
DC power (2amps)..

Regards,

-- 
Robert Nelson
http://www.rcn-ee.com/

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Beaglebone Black won't power on, did I do something wrong? :(

2014-01-17 Thread feniello . a
I did as you said, but nothing works :(

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: Beaglebone Black won't power on, did I do something wrong? :(

2014-01-17 Thread Gerald Coley
Ok. Then you need to get it looked at.

http://beagleboard.org/Support/RMA

Gerald



On Fri, Jan 17, 2014 at 1:11 PM, feniell...@gmail.com wrote:

 I did as you said, but nothing works :(

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Mathematica on the Beagle

2014-01-17 Thread Mark A. Yoder
Success!  I have Mathematica running on a BeagleBone Black. I'm running 
under the lasted Debina beta image[1].

--Mark

[1] https://groups.google.com/forum/#!topic/beagleboard/uDKIP63nY8A

On Wednesday, December 4, 2013 10:23:22 AM UTC-5, Daniel Chisholm wrote:

 What great news!  I've sent off an email asking to be part of the 
 prerelease testing.

 I ran the same code below in my desktop Mathematica-8 and it ran 11.8X 
 faster.  So colour me absolutely amazed and impressed at the computational 
 horsepower of the $45 BBB compared to a decently stout big computer 
 (i5-2500 CPU @ 3.30GHz).

 - Daniel


 On Tuesday, December 3, 2013 3:09:34 PM UTC-4, arn...@live.com wrote:

 We're working on a wider Linux-ARM release, which would include boards 
 like the Beaglebone Black.

 In fact, basic functionality already works (and a Beaglebone Black is 
 about 5.57% faster than a Raspberry Pi when running the Wolfram Language / 
 Mathematica):

 ubuntu@beaglebone1lx:~$ wolfram
 Wolfram Language
 Copyright 1988-2013 Wolfram Research


 In[1]:= N[Pi,100]; // AbsoluteTiming


 Out[1]= {7.092367, Null}



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: debian: test images (2014-01-10)

2014-01-17 Thread smith . winston . 101
On Wednesday, January 15, 2014 1:05:33 PM UTC-5, RobertCNelson wrote:

  With the new scripts, I'm looking to do a number of things: 
  
  3) Build a custom kernel (to include a .dts) 


Any thoughts on adding a custom .dts to the build script to be included in 
the kernel?

I have some notes from someone else:

1. Copy the dts file to $KERNEL/firmware/capes
2. Add it to the build list in $KERNEL/firmware/Makefile

But it looks like it's downloading a pre-build kernel?

Thanks!


-W.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Beaglebone Black won't power on, did I do something wrong? :(

2014-01-17 Thread feniello . a
ok! thanks to everyone for the help

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Kernel and device tree independence

2014-01-17 Thread mittermaier . ulli
I do have the same issue. I want to use UART1 and UART4 with RTS.
It is not possible to add a modified device tree of UART4 to uEnv.txt 
because it shows an error on startup. But it works when I do it manually 
after the system booted up.
Additionally I can not use UART1 because I2C2 blocks the RTS pin.

Do you know a solution, Robert?

Am Freitag, 17. Januar 2014 15:25:39 UTC+1 schrieb RobertCNelson:

 On Fri, Jan 17, 2014 at 8:22 AM,  cwrse...@gmail.com javascript: 
 wrote: 
  I thought one of the advantages of the device tree setup was that it was 
  independent of the kernel, 
  but apparently a fair amount of porting work is still needed between 
 kernel 
  versions.  Does anyone 
  know how roughly how much of a DT can be kept, from kernel to kernel? 

 Give it another year or so, some DT bindings are frozen, but some are 
 still in flux.  kernel developers are planning to eventually move the 
 dts's to a separate repo, when that actually happens, you'll have the 
 answer your looking for. 

 Regards, 

 -- 
 Robert Nelson 
 http://www.rcn-ee.com/ 


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Using uart1 rts and cts

2014-01-17 Thread mittermaier . ulli
Which name should I use? Only i2c2 does not work..

Am Dienstag, 14. Januar 2014 14:30:41 UTC+1 schrieb David Marquart:

 I haven't really looked too hard, but my first guess would be that in 
 uEnv.txt you would need to disable i2c2 pinmux like what is done with 
 hdmi/emmc when you don't want that.  On 3.12.6 kernel I had to actually 
 remove pinmux for hdmi before I rebuilt the kernel.


 On Sunday, December 15, 2013 4:06:18 AM UTC-6, Tom Davies wrote:

 I am using uart 5 with hardware flow control quite happily.

 As I don't have any hardware cape installed, I thought that I would be 
 able to use uart 1 -- while I would be remuxing both i2c2 pins, my reading 
 of the documentation was that with no cape installed, that would be OK.

 But I wasn't able to get that working -- while uart 1 worked without 
 hardware flow control, as soon as I enabled cts/rts I couldn't transmit 
 through the port.

 Using uart 5 instead is OK, but I'm curious as to why uart 1 rts/cts 
 wouldn't work?

 Thanks,
Tom



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] BoneScript 0.2.4 published on npmjs.org

2014-01-17 Thread Jason Kridner
I've just published BoneScript 0.2.4. I don't expect this to be a very
long-lived release, but I needed to get it out on npm in order to get more
people to try it and report issues.

The primary goals of this release are to support non-Angstrom distributions
and unloading of devicetree overlays such that pins can be reconfigured.
There are also a number of bug fixes, though some needed ones still aren't
incorporated and some new ones are likely to emerge. Please report issues
ASAP as the upcoming new on-board production image will likely contain the
0.2.5 release to incorporate your fixes if you get them in within a couple
weeks.

To install, log into the shell prompt of your BeagleBone (running Angstrom,
Debian, etc. as long as it has capemgr support and a compatible devicetree
http://elinux.org/Capemgr):

TERM=dumb npm install -g bonescript

To verify the installation, execute the following:

root@beaglebone:~# node -pe require('bonescript').getPlatform().bonescript
0.2.4

Feel free to reply here with questions. If you find issues, please report
them to https://github.com/jadonk/bonescript/issues.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Sending hostname during DHCP

2014-01-17 Thread eresonance
Hi everyone,

I'm trying to get the beaglebone to send its hostname to the DNS server 
when it receives an IP address via DHCP. This is apparently automatic in 
many distros:
http://www.held.org.il/blog/2011/01/make-dhcp-auto-update-dynamic-dns/

Ideally I'll be able to use this hostname when trying to connect to a 
headless board over the network.

I found out that the Angstrom distro uses connman and tried to look for 
some kind of configuration that would control this but I came up empty. 
I've asked the connman dist list but I'm asking here as well in case anyone 
else got it working.

The obvious is 'use avahi', however that doesn't seem to work across all of 
my machines. Although avahi seems to update my windows 7 box fine 
(hostname.local resolves to the beaglebone), I have windows xp machines 
and some linux servers that don't seem to be able to see the beaglebone.

Note that I can send pings to the beaglebones IP just fine, it's just the 
hostname resolution that I can't get working.

ifconfig on beaglebone shows IP address of 10.101.1.126 (internal work 
network). Subnet mask is 255.255.252.0, win7 machine on same subnet but my 
windows xp and linux servers are on different subnets (but all within the 
mask). I think this is why avahi isn't updating those.

nslookup has no entires for my beaglebones hostname, or hostname.local. 
I made sure that the nameserver on my win machine is the same as the 
beaglebone.

Any ideas? I don't really want to load ubuntu but I may have to just to get 
the dhclient service to get this working.

Thanks,
-Devin

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Using cape outline

2014-01-17 Thread Eric Fort
I just started with a cape design.  the basic cape is in both the
adafruit and sparkfun eagle libraries though each has a different take
on it.  If you don't see it in the library first thing check if that
library is enabled in eagle.  you can also view what parts are in a
library.  it's probably also worth your time to make sure you have the
latest versions of the libraries from sparkfun and adafruit installed
as well as other libraries you intend to use.  from there just add the
cape as a part in your design and start connecting to it as if it's
simply another part of the schematic.  that ought get you started.

Eric

On Fri, Jan 17, 2014 at 6:28 AM, Philip Polstra ppols...@gmail.com wrote:
 Making a cape and trying to use adafruit eagle library with cape outline. No
 clue on how to use the outline. Anyone else used this before? Don't see it
 in the library either.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Using cape outline

2014-01-17 Thread Philip Polstra
I'll give that a shot.  Don't see a cape in the Adafruit library even
though I have the latest.


On Fri, Jan 17, 2014 at 3:10 PM, Eric Fort eric.f...@gmail.com wrote:

 I just started with a cape design.  the basic cape is in both the
 adafruit and sparkfun eagle libraries though each has a different take
 on it.  If you don't see it in the library first thing check if that
 library is enabled in eagle.  you can also view what parts are in a
 library.  it's probably also worth your time to make sure you have the
 latest versions of the libraries from sparkfun and adafruit installed
 as well as other libraries you intend to use.  from there just add the
 cape as a part in your design and start connecting to it as if it's
 simply another part of the schematic.  that ought get you started.

 Eric

 On Fri, Jan 17, 2014 at 6:28 AM, Philip Polstra ppols...@gmail.com
 wrote:
  Making a cape and trying to use adafruit eagle library with cape
 outline. No
  clue on how to use the outline. Anyone else used this before? Don't see
 it
  in the library either.
 
  --
  For more options, visit http://beagleboard.org/discuss
  ---
  You received this message because you are subscribed to the Google Groups
  BeagleBoard group.
  To unsubscribe from this group and stop receiving emails from it, send an
  email to beagleboard+unsubscr...@googlegroups.com.
  For more options, visit https://groups.google.com/groups/opt_out.

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] BeagleBone Black VS Radiation?

2014-01-17 Thread justin . bunker


Hi everyone,

I am part of a student-run society, at university, that is responsible for 
designing a CubeSat satellite. We are attempting to use the BeagleBone 
Black as the on-board computer, however we have concerns with bit flips and 
single-event upsets that can be caused by radiation. Of course we will be 
using some shielding, but I would be interested to know if similar projects 
were undertaken and also what you guys think about the BBB's tolerance to 
radiation.

Thank you!

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] BBB VS Radiation?

2014-01-17 Thread justin . bunker


Hi everyone,

I am part of a student-run society, at university, that is responsible for 
designing a CubeSat satellite. We are attempting to use the BeagleBone 
Black as the on-board computer, however we have concerns with bit flips and 
single-event upsets that can be caused by radiation. Of course we will be 
using some shielding, but I would be interested to know if similar projects 
were undertaken and also what you guys think about the BBB's tolerance to 
radiation.

Thank you!

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] BBB VS Radiation?

2014-01-17 Thread Gerald Coley
I know this has been done before. You might try googling it. I think the
BeagleBone was used in one before. You could also try searching this email
list.


Gerald


On Fri, Jan 17, 2014 at 3:11 PM, justin.bun...@spaceconcordia.ca wrote:

 Hi everyone,

 I am part of a student-run society, at university, that is responsible for
 designing a CubeSat satellite. We are attempting to use the BeagleBone
 Black as the on-board computer, however we have concerns with bit flips and
 single-event upsets that can be caused by radiation. Of course we will be
 using some shielding, but I would be interested to know if similar projects
 were undertaken and also what you guys think about the BBB's tolerance to
 radiation.

 Thank you!

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


RE: [beagleboard] Re: Build a QT/11 application for beagleboard black by cross compiling from ubuntu

2014-01-17 Thread William Pretty Security
 

@Don  Louis

 

I feel really dumb L

 

I discovered my problem when I compared the post on this list to the 
Cloud-Rocket site.

The post on this list said the desktop environment was: Ubuntu 13.10 64bit (VB).

While the ones on the Cloud-Rocket site said: Ubuntu 12.10 32bit (VMplayer)

 

The reason I was having so much trouble is I was trying to run a 32 bit app in 
a 64 bit OS L

I built Ubuntu 12.10 32bit, and now things are rolling right along.

 

I have yet to compile the hello world program, but I’m getting there …..

 

Bill

 

http://www.packtpub.com/building-a-home-security-system-with-beaglebone/book

 

From: beagleboard@googlegroups.com [mailto:beagleboard@googlegroups.com] On 
Behalf Of Don deJuan
Sent: Friday, January 17, 2014 12:46 PM
To: beagleboard@googlegroups.com
Subject: Re: [beagleboard] Re: Build a QT/11 application for beagleboard black 
by cross compiling from ubuntu

 

On 01/17/2014 09:41 AM, Louis McCarthy wrote:

@Bill 

Can you run 'uname -a' from a terminal and post the results here?

What is the file name (or download link) of the angstrom toolchain that you 
downloaded?

 

@David

Sure. I have tried it with the Debian beta and it seems to be working.

http://armsdr.blogspot.com/2014/01/bare-metal-qt-52-on-beaglebone-black.html

Louis

 


On Thursday, January 16, 2014 12:21:09 PM UTC-6, William Pretty Security wrote: 

 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: BBB: after powerfailure BBB is no longer booting from eMMC

2014-01-17 Thread Martin Sperl

On Friday, January 17, 2014 7:38:47 PM UTC+1, RobertCNelson wrote:


 Really none ?... 

 Umm, how are you flashing it? 

 ALL capes removed, NO USB, (ethernet can be plugged in), a real 5 volt 
 DC power (2amps).. 

  
No Capes, No Ethernet, Only Serial Console and 5V 2A USB Charger.

Only Power and serial connected and I did try it with your image - I was 
able to verify on the console that the image of yours is working propperly 
and creating the files - partitioning, rsync,... all working - in the end 
all LED turned on and everything.

Then disconnecting from Power and removing SD card.

Then powering it on - nothing happens on the serial line at all... And that 
is the experience with all the images I have tried---

That is why I am saying there is something VERY strange with my board - at 
least since I did disconnect it without shutting it down...

So I fear that the pre-bootloader (the one loading MLO) is somehow 
defective and works only for the SD.

Martin

P.s: my guess is that if I clone the system created by your image on the 
eMMC to a 2GB SD, then it will boot correctly from SD - I can give it a try 
tomorrow...

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] Re: Beagle board and Google IOIO.

2014-01-17 Thread Al Linke
Assuming you're referring to the IOIO board, here's how to get that 
going http://ledpixelart.com/beaglebone-and-ioio/


On Monday, October 1, 2012 11:36:53 PM UTC-7, Binu wrote:

 Hi everyone,
   I have success fully loaded my customized 
 android OS in beagle board, now i like to know how can i use Google IOIO in 
 it.
 i have used it in phones,but beagle board is not detecting Google IOIO.

 What should i do it to detect Google IOIO in beagle board?

 Thanx in advance..:)


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[beagleboard] BBB build from SDK ti-sdk-am335x-evm-06.00.00.00-Linux-x86-Install.bin

2014-01-17 Thread Jeremy Van
The TI SDK is built on top of the Arago distro which is kind of based on 
Angstrom. Its also Open Embeded / Yacto compatible like the Angstrom 
distribution. So far I've had little luck finding a good tutorial for building 
for the BBB. I've succeeded so far in only being able to install it and make an 
 sd card image. However, I can't figure out how to install custom packages or 
get cape support. If you find a good resource or would like to calaborate 
please let me know. Specifically,  I'm working on an opensource handheld that 
uses ipython notebook to allow users to quickly write and edit test code for 
their projects. The goal is to create a graphing calculator / tablet for makers 
and hardware hackers. At the top of my todo list is writing a tutorial for 
getting the TI SDK running with the matrix gui.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] BBB VS Radiation?

2014-01-17 Thread Maxim Podbereznyy
Hey Justin!

if fully industrial version of a BBB clone can help you to struggle
radiation then I can donate you one :)


2014/1/18 Gerald Coley ger...@beagleboard.org

 I know this has been done before. You might try googling it. I think the
 BeagleBone was used in one before. You could also try searching this email
 list.


 Gerald


 On Fri, Jan 17, 2014 at 3:11 PM, justin.bun...@spaceconcordia.ca wrote:

 Hi everyone,

 I am part of a student-run society, at university, that is responsible
 for designing a CubeSat satellite. We are attempting to use the BeagleBone
 Black as the on-board computer, however we have concerns with bit flips and
 single-event upsets that can be caused by radiation. Of course we will be
 using some shielding, but I would be interested to know if similar projects
 were undertaken and also what you guys think about the BBB's tolerance to
 radiation.

 Thank you!

 --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
LinkedIn - http://www.linkedin.com/in/maximpodbereznyy
Company - http://www.linkedin.com/company/mentorel
Facebook - https://www.facebook.com/mentorel.company

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [beagleboard] Re: BBB: after powerfailure BBB is no longer booting from eMMC

2014-01-17 Thread evilwulfie
you cannot use  USB power while flashing the board. you MUST use a
supply plugged into the barrel connector


On 1/17/2014 3:13 PM, Martin Sperl wrote:

 On Friday, January 17, 2014 7:38:47 PM UTC+1, RobertCNelson wrote:


 Really none ?...

 Umm, how are you flashing it?

 ALL capes removed, NO USB, (ethernet can be plugged in), a real 5
 volt
 DC power (2amps)..

  
 No Capes, No Ethernet, Only Serial Console and 5V 2A USB Charger.

 Only Power and serial connected and I did try it with your image - I
 was able to verify on the console that the image of yours is working
 propperly and creating the files - partitioning, rsync,... all working
 - in the end all LED turned on and everything.

 Then disconnecting from Power and removing SD card.

 Then powering it on - nothing happens on the serial line at all... And
 that is the experience with all the images I have tried---

 That is why I am saying there is something VERY strange with my board
 - at least since I did disconnect it without shutting it down...

 So I fear that the pre-bootloader (the one loading MLO) is somehow
 defective and works only for the SD.

 Martin

 P.s: my guess is that if I clone the system created by your image on
 the eMMC to a 2GB SD, then it will boot correctly from SD - I can give
 it a try tomorrow...
 -- 
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google
 Groups BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.