[beagleboard] when give -qt-xcb parameter to Qt 5.5.1 ./configure doesn't work

2015-12-10 Thread Zola
I am trying to build Qt 5.5.1 on my host machine Ubuntu 14.04 to 
cross-compile for my BeagleBone Black running Debian Wheezy, I am not sure 
what steps are needed before I give -qt-xcb to ./configure. I read this 
http://doc.qt.io/qt-5/linux-requirements.html and it tells that some 
packages are required for example libfontconfig1-dev, but there is 
no libfontconfig1-dev for armhf architecture. What to do? On what way to 
install those developer required packages on my Ubuntu host machine? To 
download tarballs and then compile with my armhf gcc?

Thank you very much for your response, I lost many days trying to make it 
work, but unsuccessfuly.

-- 
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/d/optout.


Re: [beagleboard] Re: Bulk flashing of BBB eMMC

2015-12-10 Thread Jason Kridner
As Robert mentioned, I've also been using the BBBlfs project, which
provides a USB-based bootloader, to load a kernel plus userspace where
the eMMC looks like a USB flash drive. Usability across operating
systems have kept us from pushing BBBlfs out as the default for end
users where usability and not speed is the main concern.

For production, however, I've heard that some eMMC providers will put
images onto the eMMC so that they arrived pre-programmed on your dock.
I'm not sure how cost effective that is.

For workshops and my cape tester setup, I've been trying to get a
BeagleBone Black setup as a BBBlfs host and use udev rules to trigger
flashing when a BeagleBone is attached. Just as I was starting to test
it, I walked up with a big static charge and zapped my cape tester
setup. :(

I was going to start with a udev rule like this:

SUBSYSTEMS=="usb", ATTRS{idVendor}=="0525", ATTRS{idProduct}=="a4a2",
ACTION=="add", RUN+="cd /root/BBBlfs/bin && ./usb_flasher"

Next would be to figure out how to disable udisks so that the eMMC
doesn't get mounted, then use another udev rule with bmaptools to
trigger the programming.

I'd also put some kind of cron job to download the latest images off
of http://builds.beagleboard.org to try to make my setup complete.

On Mon, Dec 7, 2015 at 11:09 AM, Lee Armstrong  wrote:
> Wow that is a sizeable difference, I will create some new SD cards later to
> speed things up! :-)
>
> On Monday, December 7, 2015 at 4:07:57 PM UTC, RobertCNelson wrote:
>>
>>
>>
>> On Mon, Dec 7, 2015 at 9:57 AM, William Hermans  wrote:
>>>
>>> I should also add, that I tested USB read / write speeds a couple years
>>> ago. Reads were actually slower than NFS, but write were around 20MB/s.
>>>
>>> Anyway, we're talking ancient 3.8.x, so perhaps with the newer 4.1.x
>>> kernels that's been improved ?
>>
>>
>>
>> I don't have a direct apples to apples comparison.
>>
>> The default eMMC flashers use rsync to copy a 'ro' microSD image to the
>> eMMC
>>
>> I did implement a usb based, but that boots off of a microSD, mounts the
>> usb and flashes the eMMC via bmap-tools, however it's a *.xz compressed
>> image on the usb drive..  Which slows it down.
>>
>> With Jessie, the current 4gb images take about 18:30-ish, with this change
>> we are back to 11:30-ish
>>
>>
>> https://github.com/RobertCNelson/boot-scripts/commit/ff8719e152f4464ffc695af3f820883cea29d543
>>
>> Regards,
>>
>> --
>> Robert Nelson
>> https://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/d/optout.

-- 
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/d/optout.


[beagleboard] Re: external RTC chip recommandation?

2015-12-10 Thread Graham
The DS1302 are DS1307 most common, reasonably low cost.
Adafruit has breakout boards and drivers for the DS1307, so you could use 
that as a reference design.
Both are I2C bus devices, independently powered from the bus.
Run for years from a little watch battery.

Old Dallas Semiconductor parts, now supplied by Maxim Integrated.

--- Graham

==

On Thursday, December 10, 2015 at 12:39:49 AM UTC-6, c2h2 wrote:
>
> Hi all,
>
> onboard RTC draws too much current,
>
>
> need to have low current RTC chip, no need to be super accurate, low cost 
> is the prime concern. has suggestions?
>
>

-- 
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/d/optout.


Re: [beagleboard] Re: Bulk flashing of BBB eMMC

2015-12-10 Thread William Hermans
>
> *For workshops and my cape tester setup, I've been trying to get a*
> * BeagleBone Black setup as a BBBlfs host and use udev rules to trigger*
> * flashing when a BeagleBone is attached. Just as I was starting to test*
> * it, I walked up with a big static charge and zapped my cape tester*
> * setup. :(*
>

Ouch !!! Do you by any chance have a worklog of this setup Jason ? I'd be
willing to setup and test this myself. BBBlfs is pretty interesting, but I
was under the impression this was an Android only thing - As per the GSoC
project . . . granted, Android is (sort of ) Linux too . . . I did find the
github project page, the instructions seem complete, but I was more
interested in knowing what you had for a run script off the udev rule
mentioned above.

On Thu, Dec 10, 2015 at 7:42 AM, Jason Kridner 
wrote:

> As Robert mentioned, I've also been using the BBBlfs project, which
> provides a USB-based bootloader, to load a kernel plus userspace where
> the eMMC looks like a USB flash drive. Usability across operating
> systems have kept us from pushing BBBlfs out as the default for end
> users where usability and not speed is the main concern.
>
> For production, however, I've heard that some eMMC providers will put
> images onto the eMMC so that they arrived pre-programmed on your dock.
> I'm not sure how cost effective that is.
>
> For workshops and my cape tester setup, I've been trying to get a
> BeagleBone Black setup as a BBBlfs host and use udev rules to trigger
> flashing when a BeagleBone is attached. Just as I was starting to test
> it, I walked up with a big static charge and zapped my cape tester
> setup. :(
>
> I was going to start with a udev rule like this:
>
> SUBSYSTEMS=="usb", ATTRS{idVendor}=="0525", ATTRS{idProduct}=="a4a2",
> ACTION=="add", RUN+="cd /root/BBBlfs/bin && ./usb_flasher"
>
> Next would be to figure out how to disable udisks so that the eMMC
> doesn't get mounted, then use another udev rule with bmaptools to
> trigger the programming.
>
> I'd also put some kind of cron job to download the latest images off
> of http://builds.beagleboard.org to try to make my setup complete.
>
> On Mon, Dec 7, 2015 at 11:09 AM, Lee Armstrong  wrote:
> > Wow that is a sizeable difference, I will create some new SD cards later
> to
> > speed things up! :-)
> >
> > On Monday, December 7, 2015 at 4:07:57 PM UTC, RobertCNelson wrote:
> >>
> >>
> >>
> >> On Mon, Dec 7, 2015 at 9:57 AM, William Hermans 
> wrote:
> >>>
> >>> I should also add, that I tested USB read / write speeds a couple years
> >>> ago. Reads were actually slower than NFS, but write were around 20MB/s.
> >>>
> >>> Anyway, we're talking ancient 3.8.x, so perhaps with the newer 4.1.x
> >>> kernels that's been improved ?
> >>
> >>
> >>
> >> I don't have a direct apples to apples comparison.
> >>
> >> The default eMMC flashers use rsync to copy a 'ro' microSD image to the
> >> eMMC
> >>
> >> I did implement a usb based, but that boots off of a microSD, mounts the
> >> usb and flashes the eMMC via bmap-tools, however it's a *.xz compressed
> >> image on the usb drive..  Which slows it down.
> >>
> >> With Jessie, the current 4gb images take about 18:30-ish, with this
> change
> >> we are back to 11:30-ish
> >>
> >>
> >>
> https://github.com/RobertCNelson/boot-scripts/commit/ff8719e152f4464ffc695af3f820883cea29d543
> >>
> >> Regards,
> >>
> >> --
> >> Robert Nelson
> >> https://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/d/optout.
>
> --
> 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/d/optout.
>

-- 
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/d/optout.


Re: [beagleboard] debian jessie: nodejs users (v4.2.3 now available)

2015-12-10 Thread William Hermans
hmmm . . .

https://nodejs.org/dist/v5.2.0/node-v5.2.0-linux-armv7l.tar.xz

On Fri, Dec 4, 2015 at 3:24 PM, Robert Nelson 
wrote:

>
>
> On Fri, Dec 4, 2015 at 4:21 PM, William Hermans  wrote:
>
>> *Wheezy users, sorry gcc is just too old, you'll be stuck on 0.10.38 (i'm
>>> trying to atleast give you: 0.10.41)*
>>>
>>
>> Does 0.10.41 really offer that much in the way of improvements ? Also,
>> why is gcc too old ? Something that is potentially portable, or not ?
>>
>
> Just a few cve fixes...  but against it's built-in openssl, which got
> ripped out by debian anyways..  still shifting thru the diff..
>
> gcc-4.8 is needed for > 0.10.x (not sure about 0.12.x, but defintelly
> 4.2.x)
>
> Regards,
>
> --
> Robert Nelson
> https://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/d/optout.
>

-- 
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/d/optout.


Re: [beagleboard] debian jessie: nodejs users (v4.2.3 now available)

2015-12-10 Thread William Hermans
Robert,

I'm considering setting this up and testing. Currently working on an x86-64
Nodejs server, when I ran into that. Taking notes for setup so should be
pretty much a copy paste experience for the BBB.

On Thu, Dec 10, 2015 at 10:42 AM, William Hermans  wrote:

> hmmm . . .
>
> https://nodejs.org/dist/v5.2.0/node-v5.2.0-linux-armv7l.tar.xz
>
> On Fri, Dec 4, 2015 at 3:24 PM, Robert Nelson 
> wrote:
>
>>
>>
>> On Fri, Dec 4, 2015 at 4:21 PM, William Hermans 
>> wrote:
>>
>>> *Wheezy users, sorry gcc is just too old, you'll be stuck on 0.10.38
 (i'm trying to atleast give you: 0.10.41)*

>>>
>>> Does 0.10.41 really offer that much in the way of improvements ? Also,
>>> why is gcc too old ? Something that is potentially portable, or not ?
>>>
>>
>> Just a few cve fixes...  but against it's built-in openssl, which got
>> ripped out by debian anyways..  still shifting thru the diff..
>>
>> gcc-4.8 is needed for > 0.10.x (not sure about 0.12.x, but defintelly
>> 4.2.x)
>>
>> Regards,
>>
>> --
>> Robert Nelson
>> https://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/d/optout.
>>
>
>

-- 
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/d/optout.


Re: [beagleboard] debian jessie: nodejs users (v4.2.3 now available)

2015-12-10 Thread William Hermans
Scratch that. This version does not seem to work well with the packages I
intend on using.

On Thu, Dec 10, 2015 at 10:44 AM, William Hermans  wrote:

> Robert,
>
> I'm considering setting this up and testing. Currently working on an
> x86-64 Nodejs server, when I ran into that. Taking notes for setup so
> should be pretty much a copy paste experience for the BBB.
>
> On Thu, Dec 10, 2015 at 10:42 AM, William Hermans 
> wrote:
>
>> hmmm . . .
>>
>> https://nodejs.org/dist/v5.2.0/node-v5.2.0-linux-armv7l.tar.xz
>>
>> On Fri, Dec 4, 2015 at 3:24 PM, Robert Nelson 
>> wrote:
>>
>>>
>>>
>>> On Fri, Dec 4, 2015 at 4:21 PM, William Hermans 
>>> wrote:
>>>
 *Wheezy users, sorry gcc is just too old, you'll be stuck on 0.10.38
> (i'm trying to atleast give you: 0.10.41)*
>

 Does 0.10.41 really offer that much in the way of improvements ? Also,
 why is gcc too old ? Something that is potentially portable, or not ?

>>>
>>> Just a few cve fixes...  but against it's built-in openssl, which got
>>> ripped out by debian anyways..  still shifting thru the diff..
>>>
>>> gcc-4.8 is needed for > 0.10.x (not sure about 0.12.x, but defintelly
>>> 4.2.x)
>>>
>>> Regards,
>>>
>>> --
>>> Robert Nelson
>>> https://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/d/optout.
>>>
>>
>>
>

-- 
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/d/optout.


Re: [beagleboard] debian jessie: nodejs users (v4.2.3 now available)

2015-12-10 Thread Lee Armstrong
4.x is the new LTS version whilst 5.x is "stable".  I would stick with 4.x 
and it is a HUGE improvement over the older versions as they have now 
merged with iojs which kept up to date with V8 improvements.

Lee

On Thursday, December 10, 2015 at 6:26:15 PM UTC, William Hermans wrote:
>
> Scratch that. This version does not seem to work well with the packages I 
> intend on using.
>
> On Thu, Dec 10, 2015 at 10:44 AM, William Hermans  > wrote:
>
>> Robert,
>>
>> I'm considering setting this up and testing. Currently working on an 
>> x86-64 Nodejs server, when I ran into that. Taking notes for setup so 
>> should be pretty much a copy paste experience for the BBB.
>>
>> On Thu, Dec 10, 2015 at 10:42 AM, William Hermans > > wrote:
>>
>>> hmmm . . .
>>>
>>> https://nodejs.org/dist/v5.2.0/node-v5.2.0-linux-armv7l.tar.xz
>>>
>>> On Fri, Dec 4, 2015 at 3:24 PM, Robert Nelson >> > wrote:
>>>


 On Fri, Dec 4, 2015 at 4:21 PM, William Hermans >>> > wrote:

> *Wheezy users, sorry gcc is just too old, you'll be stuck on 0.10.38 
>> (i'm trying to atleast give you: 0.10.41)*
>>
>
> Does 0.10.41 really offer that much in the way of improvements ? Also, 
> why is gcc too old ? Something that is potentially portable, or not ?
>

 Just a few cve fixes...  but against it's built-in openssl, which got 
 ripped out by debian anyways..  still shifting thru the diff..

 gcc-4.8 is needed for > 0.10.x (not sure about 0.12.x, but defintelly 
 4.2.x)

 Regards,

 -- 
 Robert Nelson
 https://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...@googlegroups.com .
 For more options, visit https://groups.google.com/d/optout.

>>>
>>>
>>
>

-- 
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/d/optout.


[beagleboard] UART FIFO Size & CTS Threshold

2015-12-10 Thread Lee Armstrong
Hi all,

Been looking through the kernel source for 4.1 with Debian 8.1 and trying 
to work out some of the things on the UARTs, but I can't seem to find the 
code!

   - What is the FIFO UART buffer size and is it configurable?
   - What is the FIFO trigger size for the CTS line to assert and is this 
   configurable as well?

Thanks!

Lee

-- 
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/d/optout.


Re: [beagleboard] UART FIFO Size & CTS Threshold

2015-12-10 Thread Robert Nelson
On Thu, Dec 10, 2015 at 12:56 PM, Lee Armstrong  wrote:
> Hi all,
>
> Been looking through the kernel source for 4.1 with Debian 8.1 and trying to
> work out some of the things on the UARTs, but I can't seem to find the code!
>
> What is the FIFO UART buffer size and is it configurable?

https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/drivers/tty/serial/8250/8250_omap.c#n1130

> What is the FIFO trigger size for the CTS line to assert and is this
> configurable as well?


Regards

-- 
Robert Nelson
https://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/d/optout.


Re: [beagleboard] UART FIFO Size & CTS Threshold

2015-12-10 Thread Lee Armstrong
Thanks Robert. 

64 for the FIFO is what I suspected but couldn't see the CTS threshold. Was 
that 48?

Also these look pretty hard coded into the kernel. Anyone know a way of setting 
these after a compilation or how to compile in with other values?

Lee

-- 
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/d/optout.


[beagleboard] Re: external RTC chip recommandation?

2015-12-10 Thread R Miloh


On Wednesday, December 9, 2015 at 10:39:49 PM UTC-8, c2h2 wrote:
>
> Hi all,
>
> onboard RTC draws too much current,
>
>  
onboard RTC? What board are you using? I'm familiar with the BBB not having 
any onboard RTC.



> need to have low current RTC chip, no need to be super accurate, low cost 
> is the prime concern. has suggestions?
>
>

you could evaluate the following for use:  MAXIMIC DS1307, MAXIMIC DS3231, 
TI BQ32000, and NXP PC85063TP 

-- 
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/d/optout.


[beagleboard] Re: Compilation fails with dtsi file not found.

2015-12-10 Thread Moon Walker
Hi Guys,

unfortunately i am also not able to find this file 
am335x-boneblack-1ghz.dtsi

could you provide me with the exact location.

Thank you
Attila

On Monday, July 27, 2015 at 4:31:34 AM UTC+2, DeKay wrote:
>
> Hi
>
> I am trying to compile the 4.1 kernel as per this eewiki link 
> . I started on a 
> fresh The kernel compiles but the compilation script bombs when it gets to 
> the dtbs stuff because it can't find a file.  Help appreciated.
>
> - 
> make -j2 ARCH=arm LOCALVERSION=-bone14.1 CROSS_COMPILE=ccache 
> /home/dk/Hacking/BBB/bb-kernel/dl/gcc-l
> inaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf- 
> dtbs 
> - 
>  CHK include/config/kernel.release 
>  CHK include/generated/uapi/linux/version.h 
>  CHK include/generated/utsrelease.h 
> make[1]: 'include/generated/mach-types.h' is up to date. 
>  CHK include/generated/bounds.h 
>  CHK include/generated/asm-offsets.h 
>  CALLscripts/checksyscalls.sh 
>  DTC arch/arm/boot/dts/am335x-base0033.dtb 
>  DTC arch/arm/boot/dts/am335x-bone.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-nhdmi-overlay.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-hdmi-overlay.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-emmc-overlay.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-overlay.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-wl1835mod.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-replicape.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-cape-bone-argus.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-can0.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-r.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-c.dtb 
>  DTC arch/arm/boot/dts/am335x-bone-cape-bone-argus.dtb 
>  DTC arch/arm/boot/dts/am335x-bone-can0.dtb 
>  DTC arch/arm/boot/dts/am335x-arduino-tre.dtb 
>  DTC arch/arm/boot/dts/am335x-bonegreen.dtb 
> arch/arm/boot/dts/am335x-bonegreen.dts:19:38: fatal error: 
> am335x-boneblack-1ghz.dtsi: No such file o
> r directory 
> #include "am335x-boneblack-1ghz.dtsi" 
>  ^ 
> compilation terminated. 
> scripts/Makefile.lib:293: recipe for target 
> 'arch/arm/boot/dts/am335x-bonegreen.dtb' failed 
> make[1]: *** [arch/arm/boot/dts/am335x-bonegreen.dtb] Error 1 
> make[1]: *** Waiting for unfinished jobs 
> arch/arm/Makefile:319: recipe for target 'dtbs' failed 
> make: *** [dtbs] Error 2
>
>

-- 
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/d/optout.


Re: [beagleboard] Re: Compilation fails with dtsi file not found.

2015-12-10 Thread Robert Nelson
On Thu, Dec 10, 2015 at 1:29 PM, Moon Walker  wrote:
> Hi Guys,
>
> unfortunately i am also not able to find this file
> am335x-boneblack-1ghz.dtsi
>
> could you provide me with the exact location.

If you need that file to override your clock frequency, then your git
checkout is too old..

as it's now taken care of by the driver...

Regards,

-- 
Robert Nelson
https://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/d/optout.


Re: [beagleboard] Call a C program from PHP

2015-12-10 Thread AndrewTaneGlen
A left-field option would be to communicate with a script running with full 
privileges via a couple of user-space files.

This way you'd have:
1) A script run at startup, which looks for certain values in a couple of 
user-space files - possibly files within your server folder. The script 
then uses these values to determine what programs to run, files to modify, 
etc.
2) Your php server, taking user input from the web, and modifying the 
user-space files as required.


Cheers,
Andy.

On Thursday, 10 December 2015 05:23:40 UTC+13, Dieter Wirz wrote:
>
> BTW: did you check 
> /var/log/apache2/error.log 
>
>
> On Wed, Dec 9, 2015 at 4:55 PM, Dieter Wirz  > wrote: 
> > Hi 
> > Apache in debian runs as user www-data. Has the user www-data the rights 
> to run 
> > 1. your program 
> > 2. access gpio 
> > 
> > You may test this if you su www-data, having no password: 
> > su # become root 
> > su www-data # become user www-data 
> > bash # as www-data has no shell 
> > /var/www/ledCtl $led $onOff 
> > 
> > HTH 
> > 
> > 
> > On Tue, Dec 8, 2015 at 8:02 PM, Marcelo Rodrigues  > wrote: 
> >> Hi Everyone, 
> >> 
> >> I wrote a small C program for turning on/off the LEDs of the 
> BeagleBone, it 
> >> works fine when I call it direct from command line. However, when I try 
> to 
> >> call it from a PHP code it doesn't work. 
> >> 
> >> I'm using Linux beaglebone 3.8.13-bone71.1 and Apache2. The C program 
> reads 
> >> 2 arguments from command line (led and onOff) that says which led to 
> control 
> >> and its state. The exec line in the PHP code is the following: 
> >> exec("/var/www/ledCtl $led $onOff"); 
> >> 
> >> Do you have any idea how can I find the reason this call doen'st work 
> from 
> >> PHP code? 
> >> 
> >> 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...@googlegroups.com . 
> >> For more options, visit https://groups.google.com/d/optout. 
>

-- 
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/d/optout.


[beagleboard] Re: Compilation fails with dtsi file not found.

2015-12-10 Thread Moon Walker
Hi Robert,

thank you for your prompt reply.
I am in your dtb-rebuilder repo and trying to use the 1wire driver since 
monday unsuccessfully.
I am so disappointed now since with arduino it succed in an hour...

Thx
Attila

On Monday, July 27, 2015 at 4:31:34 AM UTC+2, DeKay wrote:
>
> Hi
>
> I am trying to compile the 4.1 kernel as per this eewiki link 
> . I started on a 
> fresh The kernel compiles but the compilation script bombs when it gets to 
> the dtbs stuff because it can't find a file.  Help appreciated.
>
> - 
> make -j2 ARCH=arm LOCALVERSION=-bone14.1 CROSS_COMPILE=ccache 
> /home/dk/Hacking/BBB/bb-kernel/dl/gcc-l
> inaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf- 
> dtbs 
> - 
>  CHK include/config/kernel.release 
>  CHK include/generated/uapi/linux/version.h 
>  CHK include/generated/utsrelease.h 
> make[1]: 'include/generated/mach-types.h' is up to date. 
>  CHK include/generated/bounds.h 
>  CHK include/generated/asm-offsets.h 
>  CALLscripts/checksyscalls.sh 
>  DTC arch/arm/boot/dts/am335x-base0033.dtb 
>  DTC arch/arm/boot/dts/am335x-bone.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-nhdmi-overlay.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-hdmi-overlay.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-emmc-overlay.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-overlay.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-wl1835mod.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-replicape.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-cape-bone-argus.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-can0.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-r.dtb 
>  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-c.dtb 
>  DTC arch/arm/boot/dts/am335x-bone-cape-bone-argus.dtb 
>  DTC arch/arm/boot/dts/am335x-bone-can0.dtb 
>  DTC arch/arm/boot/dts/am335x-arduino-tre.dtb 
>  DTC arch/arm/boot/dts/am335x-bonegreen.dtb 
> arch/arm/boot/dts/am335x-bonegreen.dts:19:38: fatal error: 
> am335x-boneblack-1ghz.dtsi: No such file o
> r directory 
> #include "am335x-boneblack-1ghz.dtsi" 
>  ^ 
> compilation terminated. 
> scripts/Makefile.lib:293: recipe for target 
> 'arch/arm/boot/dts/am335x-bonegreen.dtb' failed 
> make[1]: *** [arch/arm/boot/dts/am335x-bonegreen.dtb] Error 1 
> make[1]: *** Waiting for unfinished jobs 
> arch/arm/Makefile:319: recipe for target 'dtbs' failed 
> make: *** [dtbs] Error 2
>
>

-- 
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/d/optout.


Re: [beagleboard] debian jessie: nodejs users (v4.2.3 now available)

2015-12-10 Thread William Hermans
I'm probably going to stick with 0.10.41

On Thu, Dec 10, 2015 at 11:57 AM, Lee Armstrong  wrote:

> 4.x is the new LTS version whilst 5.x is "stable".  I would stick with 4.x
> and it is a HUGE improvement over the older versions as they have now
> merged with iojs which kept up to date with V8 improvements.
>
> Lee
>
> On Thursday, December 10, 2015 at 6:26:15 PM UTC, William Hermans wrote:
>>
>> Scratch that. This version does not seem to work well with the packages I
>> intend on using.
>>
>> On Thu, Dec 10, 2015 at 10:44 AM, William Hermans 
>> wrote:
>>
>>> Robert,
>>>
>>> I'm considering setting this up and testing. Currently working on an
>>> x86-64 Nodejs server, when I ran into that. Taking notes for setup so
>>> should be pretty much a copy paste experience for the BBB.
>>>
>>> On Thu, Dec 10, 2015 at 10:42 AM, William Hermans 
>>> wrote:
>>>
 hmmm . . .

 https://nodejs.org/dist/v5.2.0/node-v5.2.0-linux-armv7l.tar.xz

 On Fri, Dec 4, 2015 at 3:24 PM, Robert Nelson 
 wrote:

>
>
> On Fri, Dec 4, 2015 at 4:21 PM, William Hermans 
> wrote:
>
>> *Wheezy users, sorry gcc is just too old, you'll be stuck on 0.10.38
>>> (i'm trying to atleast give you: 0.10.41)*
>>>
>>
>> Does 0.10.41 really offer that much in the way of improvements ?
>> Also, why is gcc too old ? Something that is potentially portable, or 
>> not ?
>>
>
> Just a few cve fixes...  but against it's built-in openssl, which got
> ripped out by debian anyways..  still shifting thru the diff..
>
> gcc-4.8 is needed for > 0.10.x (not sure about 0.12.x, but defintelly
> 4.2.x)
>
> Regards,
>
> --
> Robert Nelson
> https://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...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>


>>>
>> --
> 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/d/optout.
>

-- 
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/d/optout.


Re: [beagleboard] debian jessie: nodejs users (v4.2.3 now available)

2015-12-10 Thread Robert Nelson
On Thu, Dec 10, 2015 at 2:36 PM, William Hermans  wrote:
> I'm probably going to stick with 0.10.41

No luck with 4.2.x?

Regards,

-- 
Robert Nelson
https://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/d/optout.


Re: [beagleboard] debian jessie: nodejs users (v4.2.3 now available)

2015-12-10 Thread William Hermans
Can't install 4.2 on an x86 / x86-64 system through APT. It pulls in 5.2.x,
as does the crappy Nodejs wiki script.

This takes me back to the 90's again, when many things( Linux ) failed on
installation, and it's really starting to aggravate me.

The packages I'm having issues with is phantom.js, which is required for
Markdown-PDF. I've read that apt-get install nodejs-legacy may fix the
problem, so I'll give that a go before I call no joy. But it's a real pain
in the ass, that one has to hunt all over the web for potential fixes to
these issues, and then there is no guarantee it'll work . . . this should
"just work".

Another issue I was having was with node pathing issues. Also, the Jessie
package was not installing correctly, e.g. the deb purported to install,
but there were no binaries anywhere that I could find. Total amateurish
90's package maintainer BS . . .

On Thu, Dec 10, 2015 at 1:41 PM, Robert Nelson 
wrote:

> On Thu, Dec 10, 2015 at 2:36 PM, William Hermans 
> wrote:
> > I'm probably going to stick with 0.10.41
>
> No luck with 4.2.x?
>
> Regards,
>
> --
> Robert Nelson
> https://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/d/optout.
>

-- 
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/d/optout.


Re: [beagleboard] Re: external RTC chip recommandation?

2015-12-10 Thread William Hermans
>
> *onboard RTC? What board are you using? I'm familiar with the BBB not
> having any onboard RTC.*
>

It's actually on die, and it's pretty much useless, as there is no way to
battery back it.

On Thu, Dec 10, 2015 at 11:20 AM, R Miloh  wrote:

>
>
> On Wednesday, December 9, 2015 at 10:39:49 PM UTC-8, c2h2 wrote:
>>
>> Hi all,
>>
>> onboard RTC draws too much current,
>>
>>
> onboard RTC? What board are you using? I'm familiar with the BBB not
> having any onboard RTC.
>
>
>
>> need to have low current RTC chip, no need to be super accurate, low cost
>> is the prime concern. has suggestions?
>>
>>
>
> you could evaluate the following for use:  MAXIMIC DS1307, MAXIMIC DS3231,
> TI BQ32000, and NXP PC85063TP
>
> --
> 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/d/optout.
>

-- 
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/d/optout.


Re: [beagleboard] Re: Compilation fails with dtsi file not found.

2015-12-10 Thread William Hermans
>
> *I am so disappointed now since with arduino it succed in an hour...*
>

So use your Arduino . . . unless you have something actually constructive
to say.

On Thu, Dec 10, 2015 at 1:06 PM, Moon Walker  wrote:

> Hi Robert,
>
> thank you for your prompt reply.
> I am in your dtb-rebuilder repo and trying to use the 1wire driver since
> monday unsuccessfully.
> I am so disappointed now since with arduino it succed in an hour...
>
> Thx
> Attila
>
> On Monday, July 27, 2015 at 4:31:34 AM UTC+2, DeKay wrote:
>
>> Hi
>>
>> I am trying to compile the 4.1 kernel as per this eewiki link
>> . I started on a
>> fresh The kernel compiles but the compilation script bombs when it gets to
>> the dtbs stuff because it can't find a file.  Help appreciated.
>>
>> -
>> make -j2 ARCH=arm LOCALVERSION=-bone14.1 CROSS_COMPILE=ccache
>> /home/dk/Hacking/BBB/bb-kernel/dl/gcc-l
>> inaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-
>> dtbs
>> -
>>  CHK include/config/kernel.release
>>  CHK include/generated/uapi/linux/version.h
>>  CHK include/generated/utsrelease.h
>> make[1]: 'include/generated/mach-types.h' is up to date.
>>  CHK include/generated/bounds.h
>>  CHK include/generated/asm-offsets.h
>>  CALLscripts/checksyscalls.sh
>>  DTC arch/arm/boot/dts/am335x-base0033.dtb
>>  DTC arch/arm/boot/dts/am335x-bone.dtb
>>  DTC arch/arm/boot/dts/am335x-boneblack.dtb
>>  DTC arch/arm/boot/dts/am335x-boneblack-nhdmi-overlay.dtb
>>  DTC arch/arm/boot/dts/am335x-boneblack-hdmi-overlay.dtb
>>  DTC arch/arm/boot/dts/am335x-boneblack-emmc-overlay.dtb
>>  DTC arch/arm/boot/dts/am335x-boneblack-overlay.dtb
>>  DTC arch/arm/boot/dts/am335x-boneblack-wl1835mod.dtb
>>  DTC arch/arm/boot/dts/am335x-boneblack-replicape.dtb
>>  DTC arch/arm/boot/dts/am335x-boneblack-cape-bone-argus.dtb
>>  DTC arch/arm/boot/dts/am335x-boneblack-can0.dtb
>>  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-r.dtb
>>  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-c.dtb
>>  DTC arch/arm/boot/dts/am335x-bone-cape-bone-argus.dtb
>>  DTC arch/arm/boot/dts/am335x-bone-can0.dtb
>>  DTC arch/arm/boot/dts/am335x-arduino-tre.dtb
>>  DTC arch/arm/boot/dts/am335x-bonegreen.dtb
>> arch/arm/boot/dts/am335x-bonegreen.dts:19:38: fatal error:
>> am335x-boneblack-1ghz.dtsi: No such file o
>> r directory
>> #include "am335x-boneblack-1ghz.dtsi"
>>  ^
>> compilation terminated.
>> scripts/Makefile.lib:293: recipe for target
>> 'arch/arm/boot/dts/am335x-bonegreen.dtb' failed
>> make[1]: *** [arch/arm/boot/dts/am335x-bonegreen.dtb] Error 1
>> make[1]: *** Waiting for unfinished jobs
>> arch/arm/Makefile:319: recipe for target 'dtbs' failed
>> make: *** [dtbs] Error 2
>>
>> --
> 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/d/optout.
>

-- 
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/d/optout.


Re: [beagleboard] debian jessie: nodejs users (v4.2.3 now available)

2015-12-10 Thread William Hermans
Actually, APT attempts to pull in 0.10.33 I think the install output was
saying. Either way, it was not working correctly.

On Thu, Dec 10, 2015 at 1:57 PM, William Hermans  wrote:

> Can't install 4.2 on an x86 / x86-64 system through APT. It pulls in
> 5.2.x, as does the crappy Nodejs wiki script.
>
> This takes me back to the 90's again, when many things( Linux ) failed on
> installation, and it's really starting to aggravate me.
>
> The packages I'm having issues with is phantom.js, which is required for
> Markdown-PDF. I've read that apt-get install nodejs-legacy may fix the
> problem, so I'll give that a go before I call no joy. But it's a real pain
> in the ass, that one has to hunt all over the web for potential fixes to
> these issues, and then there is no guarantee it'll work . . . this should
> "just work".
>
> Another issue I was having was with node pathing issues. Also, the Jessie
> package was not installing correctly, e.g. the deb purported to install,
> but there were no binaries anywhere that I could find. Total amateurish
> 90's package maintainer BS . . .
>
> On Thu, Dec 10, 2015 at 1:41 PM, Robert Nelson 
> wrote:
>
>> On Thu, Dec 10, 2015 at 2:36 PM, William Hermans 
>> wrote:
>> > I'm probably going to stick with 0.10.41
>>
>> No luck with 4.2.x?
>>
>> Regards,
>>
>> --
>> Robert Nelson
>> https://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/d/optout.
>>
>
>

-- 
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/d/optout.


Re: [beagleboard] Re: Compilation fails with dtsi file not found.

2015-12-10 Thread moonwalker
I asked a question and pointed my frustration wit linux! You are the one
not constructive!!
But do not worry man! I went to the previous debian image and made it in
half an hour.
Thank you for your nothing.
On 10 Dec 2015 22:03, "William Hermans"  wrote:

> *I am so disappointed now since with arduino it succed in an hour...*
>>
>
> So use your Arduino . . . unless you have something actually constructive
> to say.
>
> On Thu, Dec 10, 2015 at 1:06 PM, Moon Walker 
> wrote:
>
>> Hi Robert,
>>
>> thank you for your prompt reply.
>> I am in your dtb-rebuilder repo and trying to use the 1wire driver since
>> monday unsuccessfully.
>> I am so disappointed now since with arduino it succed in an hour...
>>
>> Thx
>> Attila
>>
>> On Monday, July 27, 2015 at 4:31:34 AM UTC+2, DeKay wrote:
>>
>>> Hi
>>>
>>> I am trying to compile the 4.1 kernel as per this eewiki link
>>> . I started on
>>> a fresh The kernel compiles but the compilation script bombs when it gets
>>> to the dtbs stuff because it can't find a file.  Help appreciated.
>>>
>>> -
>>> make -j2 ARCH=arm LOCALVERSION=-bone14.1 CROSS_COMPILE=ccache
>>> /home/dk/Hacking/BBB/bb-kernel/dl/gcc-l
>>> inaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-
>>> dtbs
>>> -
>>>  CHK include/config/kernel.release
>>>  CHK include/generated/uapi/linux/version.h
>>>  CHK include/generated/utsrelease.h
>>> make[1]: 'include/generated/mach-types.h' is up to date.
>>>  CHK include/generated/bounds.h
>>>  CHK include/generated/asm-offsets.h
>>>  CALLscripts/checksyscalls.sh
>>>  DTC arch/arm/boot/dts/am335x-base0033.dtb
>>>  DTC arch/arm/boot/dts/am335x-bone.dtb
>>>  DTC arch/arm/boot/dts/am335x-boneblack.dtb
>>>  DTC arch/arm/boot/dts/am335x-boneblack-nhdmi-overlay.dtb
>>>  DTC arch/arm/boot/dts/am335x-boneblack-hdmi-overlay.dtb
>>>  DTC arch/arm/boot/dts/am335x-boneblack-emmc-overlay.dtb
>>>  DTC arch/arm/boot/dts/am335x-boneblack-overlay.dtb
>>>  DTC arch/arm/boot/dts/am335x-boneblack-wl1835mod.dtb
>>>  DTC arch/arm/boot/dts/am335x-boneblack-replicape.dtb
>>>  DTC arch/arm/boot/dts/am335x-boneblack-cape-bone-argus.dtb
>>>  DTC arch/arm/boot/dts/am335x-boneblack-can0.dtb
>>>  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-r.dtb
>>>  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-c.dtb
>>>  DTC arch/arm/boot/dts/am335x-bone-cape-bone-argus.dtb
>>>  DTC arch/arm/boot/dts/am335x-bone-can0.dtb
>>>  DTC arch/arm/boot/dts/am335x-arduino-tre.dtb
>>>  DTC arch/arm/boot/dts/am335x-bonegreen.dtb
>>> arch/arm/boot/dts/am335x-bonegreen.dts:19:38: fatal error:
>>> am335x-boneblack-1ghz.dtsi: No such file o
>>> r directory
>>> #include "am335x-boneblack-1ghz.dtsi"
>>>  ^
>>> compilation terminated.
>>> scripts/Makefile.lib:293: recipe for target
>>> 'arch/arm/boot/dts/am335x-bonegreen.dtb' failed
>>> make[1]: *** [arch/arm/boot/dts/am335x-bonegreen.dtb] Error 1
>>> make[1]: *** Waiting for unfinished jobs
>>> arch/arm/Makefile:319: recipe for target 'dtbs' failed
>>> make: *** [dtbs] Error 2
>>>
>>> --
>> 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/d/optout.
>>
>
> --
> For more options, visit http://beagleboard.org/discuss
> ---
> You received this message because you are subscribed to a topic in the
> Google Groups "BeagleBoard" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/beagleboard/tqBvv9hc-bc/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> beagleboard+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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/d/optout.


Re: [beagleboard] Re: Compilation fails with dtsi file not found.

2015-12-10 Thread William Hermans
Wah ?

On Thu, Dec 10, 2015 at 2:14 PM, moonwalker  wrote:

> I asked a question and pointed my frustration wit linux! You are the one
> not constructive!!
> But do not worry man! I went to the previous debian image and made it in
> half an hour.
> Thank you for your nothing.
> On 10 Dec 2015 22:03, "William Hermans"  wrote:
>
>> *I am so disappointed now since with arduino it succed in an hour...*
>>>
>>
>> So use your Arduino . . . unless you have something actually constructive
>> to say.
>>
>> On Thu, Dec 10, 2015 at 1:06 PM, Moon Walker 
>> wrote:
>>
>>> Hi Robert,
>>>
>>> thank you for your prompt reply.
>>> I am in your dtb-rebuilder repo and trying to use the 1wire driver since
>>> monday unsuccessfully.
>>> I am so disappointed now since with arduino it succed in an hour...
>>>
>>> Thx
>>> Attila
>>>
>>> On Monday, July 27, 2015 at 4:31:34 AM UTC+2, DeKay wrote:
>>>
 Hi

 I am trying to compile the 4.1 kernel as per this eewiki link
 . I started on
 a fresh The kernel compiles but the compilation script bombs when it gets
 to the dtbs stuff because it can't find a file.  Help appreciated.

 -
 make -j2 ARCH=arm LOCALVERSION=-bone14.1 CROSS_COMPILE=ccache
 /home/dk/Hacking/BBB/bb-kernel/dl/gcc-l
 inaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-
 dtbs
 -
  CHK include/config/kernel.release
  CHK include/generated/uapi/linux/version.h
  CHK include/generated/utsrelease.h
 make[1]: 'include/generated/mach-types.h' is up to date.
  CHK include/generated/bounds.h
  CHK include/generated/asm-offsets.h
  CALLscripts/checksyscalls.sh
  DTC arch/arm/boot/dts/am335x-base0033.dtb
  DTC arch/arm/boot/dts/am335x-bone.dtb
  DTC arch/arm/boot/dts/am335x-boneblack.dtb
  DTC arch/arm/boot/dts/am335x-boneblack-nhdmi-overlay.dtb
  DTC arch/arm/boot/dts/am335x-boneblack-hdmi-overlay.dtb
  DTC arch/arm/boot/dts/am335x-boneblack-emmc-overlay.dtb
  DTC arch/arm/boot/dts/am335x-boneblack-overlay.dtb
  DTC arch/arm/boot/dts/am335x-boneblack-wl1835mod.dtb
  DTC arch/arm/boot/dts/am335x-boneblack-replicape.dtb
  DTC arch/arm/boot/dts/am335x-boneblack-cape-bone-argus.dtb
  DTC arch/arm/boot/dts/am335x-boneblack-can0.dtb
  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-r.dtb
  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-c.dtb
  DTC arch/arm/boot/dts/am335x-bone-cape-bone-argus.dtb
  DTC arch/arm/boot/dts/am335x-bone-can0.dtb
  DTC arch/arm/boot/dts/am335x-arduino-tre.dtb
  DTC arch/arm/boot/dts/am335x-bonegreen.dtb
 arch/arm/boot/dts/am335x-bonegreen.dts:19:38: fatal error:
 am335x-boneblack-1ghz.dtsi: No such file o
 r directory
 #include "am335x-boneblack-1ghz.dtsi"
  ^
 compilation terminated.
 scripts/Makefile.lib:293: recipe for target
 'arch/arm/boot/dts/am335x-bonegreen.dtb' failed
 make[1]: *** [arch/arm/boot/dts/am335x-bonegreen.dtb] Error 1
 make[1]: *** Waiting for unfinished jobs
 arch/arm/Makefile:319: recipe for target 'dtbs' failed
 make: *** [dtbs] Error 2

 --
>>> 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/d/optout.
>>>
>>
>> --
>> For more options, visit http://beagleboard.org/discuss
>> ---
>> You received this message because you are subscribed to a topic in the
>> Google Groups "BeagleBoard" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/beagleboard/tqBvv9hc-bc/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> beagleboard+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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/d/optout.
>

-- 
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/d/optout.


Re: [beagleboard] Re: Compilation fails with dtsi file not found.

2015-12-10 Thread William Hermans
>
>
>
> *I asked a question and pointed my frustration wit linux! You are the one
> not constructive!! But do not worry man! I went to the previous debian
> image and made it in half an hour. Thank you for your nothing. *
>
So, you asked a question, you got an answer, after which you felt compelled
to compare a very capable embedded linux system, with a bare metal embedded
system for 5 year olds. Did you expect a pat on the back ?

You're right. What I said was not constructive. I return comments in kind.
Maybe next time you'll actually come back with "Thank you Robert !" Instead
of being a jerk.

Me ? I don't have to worry about being a Jerk, I can actually figure things
out on my own - Given enough time.

On Thu, Dec 10, 2015 at 2:44 PM, William Hermans  wrote:

> Wah ?
>
> On Thu, Dec 10, 2015 at 2:14 PM, moonwalker 
> wrote:
>
>> I asked a question and pointed my frustration wit linux! You are the one
>> not constructive!!
>> But do not worry man! I went to the previous debian image and made it in
>> half an hour.
>> Thank you for your nothing.
>> On 10 Dec 2015 22:03, "William Hermans"  wrote:
>>
>>> *I am so disappointed now since with arduino it succed in an hour...*

>>>
>>> So use your Arduino . . . unless you have something actually
>>> constructive to say.
>>>
>>> On Thu, Dec 10, 2015 at 1:06 PM, Moon Walker 
>>> wrote:
>>>
 Hi Robert,

 thank you for your prompt reply.
 I am in your dtb-rebuilder repo and trying to use the 1wire driver
 since monday unsuccessfully.
 I am so disappointed now since with arduino it succed in an hour...

 Thx
 Attila

 On Monday, July 27, 2015 at 4:31:34 AM UTC+2, DeKay wrote:

> Hi
>
> I am trying to compile the 4.1 kernel as per this eewiki link
> . I started
> on a fresh The kernel compiles but the compilation script bombs when it
> gets to the dtbs stuff because it can't find a file.  Help appreciated.
>
> -
> make -j2 ARCH=arm LOCALVERSION=-bone14.1 CROSS_COMPILE=ccache
> /home/dk/Hacking/BBB/bb-kernel/dl/gcc-l
> inaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-
> dtbs
> -
>  CHK include/config/kernel.release
>  CHK include/generated/uapi/linux/version.h
>  CHK include/generated/utsrelease.h
> make[1]: 'include/generated/mach-types.h' is up to date.
>  CHK include/generated/bounds.h
>  CHK include/generated/asm-offsets.h
>  CALLscripts/checksyscalls.sh
>  DTC arch/arm/boot/dts/am335x-base0033.dtb
>  DTC arch/arm/boot/dts/am335x-bone.dtb
>  DTC arch/arm/boot/dts/am335x-boneblack.dtb
>  DTC arch/arm/boot/dts/am335x-boneblack-nhdmi-overlay.dtb
>  DTC arch/arm/boot/dts/am335x-boneblack-hdmi-overlay.dtb
>  DTC arch/arm/boot/dts/am335x-boneblack-emmc-overlay.dtb
>  DTC arch/arm/boot/dts/am335x-boneblack-overlay.dtb
>  DTC arch/arm/boot/dts/am335x-boneblack-wl1835mod.dtb
>  DTC arch/arm/boot/dts/am335x-boneblack-replicape.dtb
>  DTC arch/arm/boot/dts/am335x-boneblack-cape-bone-argus.dtb
>  DTC arch/arm/boot/dts/am335x-boneblack-can0.dtb
>  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-r.dtb
>  DTC arch/arm/boot/dts/am335x-boneblack-bbb-exp-c.dtb
>  DTC arch/arm/boot/dts/am335x-bone-cape-bone-argus.dtb
>  DTC arch/arm/boot/dts/am335x-bone-can0.dtb
>  DTC arch/arm/boot/dts/am335x-arduino-tre.dtb
>  DTC arch/arm/boot/dts/am335x-bonegreen.dtb
> arch/arm/boot/dts/am335x-bonegreen.dts:19:38: fatal error:
> am335x-boneblack-1ghz.dtsi: No such file o
> r directory
> #include "am335x-boneblack-1ghz.dtsi"
>  ^
> compilation terminated.
> scripts/Makefile.lib:293: recipe for target
> 'arch/arm/boot/dts/am335x-bonegreen.dtb' failed
> make[1]: *** [arch/arm/boot/dts/am335x-bonegreen.dtb] Error 1
> make[1]: *** Waiting for unfinished jobs
> arch/arm/Makefile:319: recipe for target 'dtbs' failed
> make: *** [dtbs] Error 2
>
> --
 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/d/optout.

>>>
>>> --
>>> For more options, visit http://beagleboard.org/discuss
>>> ---
>>> You received this message because you are subscribed to a topic in the
>>> Google Groups "BeagleBoard" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/beagleboard/tqBvv9hc-bc/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an ema

Re: [beagleboard] debian jessie: nodejs users (v4.2.3 now available)

2015-12-10 Thread William Hermans
Giving this https://github.com/mark-webster/node-debian a shot. Sure beats
having to find a good method for building manually. Seems to be working
great so far for v4.2.3

On Thu, Dec 10, 2015 at 2:10 PM, William Hermans  wrote:

> Actually, APT attempts to pull in 0.10.33 I think the install output was
> saying. Either way, it was not working correctly.
>
> On Thu, Dec 10, 2015 at 1:57 PM, William Hermans 
> wrote:
>
>> Can't install 4.2 on an x86 / x86-64 system through APT. It pulls in
>> 5.2.x, as does the crappy Nodejs wiki script.
>>
>> This takes me back to the 90's again, when many things( Linux ) failed on
>> installation, and it's really starting to aggravate me.
>>
>> The packages I'm having issues with is phantom.js, which is required for
>> Markdown-PDF. I've read that apt-get install nodejs-legacy may fix the
>> problem, so I'll give that a go before I call no joy. But it's a real pain
>> in the ass, that one has to hunt all over the web for potential fixes to
>> these issues, and then there is no guarantee it'll work . . . this should
>> "just work".
>>
>> Another issue I was having was with node pathing issues. Also, the Jessie
>> package was not installing correctly, e.g. the deb purported to install,
>> but there were no binaries anywhere that I could find. Total amateurish
>> 90's package maintainer BS . . .
>>
>> On Thu, Dec 10, 2015 at 1:41 PM, Robert Nelson 
>> wrote:
>>
>>> On Thu, Dec 10, 2015 at 2:36 PM, William Hermans 
>>> wrote:
>>> > I'm probably going to stick with 0.10.41
>>>
>>> No luck with 4.2.x?
>>>
>>> Regards,
>>>
>>> --
>>> Robert Nelson
>>> https://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/d/optout.
>>>
>>
>>
>

-- 
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/d/optout.


Re: [beagleboard] debian jessie: nodejs users (v4.2.3 now available)

2015-12-10 Thread William Hermans
Well, phantom.js installed fine with node v4.2.3. That build script is
awesome, reminds me of your scripts Robert ;) Only 57 lines of code too . .
.

On Thu, Dec 10, 2015 at 3:13 PM, William Hermans  wrote:

> Giving this https://github.com/mark-webster/node-debian a shot. Sure
> beats having to find a good method for building manually. Seems to be
> working great so far for v4.2.3
>
> On Thu, Dec 10, 2015 at 2:10 PM, William Hermans 
> wrote:
>
>> Actually, APT attempts to pull in 0.10.33 I think the install output was
>> saying. Either way, it was not working correctly.
>>
>> On Thu, Dec 10, 2015 at 1:57 PM, William Hermans 
>> wrote:
>>
>>> Can't install 4.2 on an x86 / x86-64 system through APT. It pulls in
>>> 5.2.x, as does the crappy Nodejs wiki script.
>>>
>>> This takes me back to the 90's again, when many things( Linux ) failed
>>> on installation, and it's really starting to aggravate me.
>>>
>>> The packages I'm having issues with is phantom.js, which is required for
>>> Markdown-PDF. I've read that apt-get install nodejs-legacy may fix the
>>> problem, so I'll give that a go before I call no joy. But it's a real pain
>>> in the ass, that one has to hunt all over the web for potential fixes to
>>> these issues, and then there is no guarantee it'll work . . . this should
>>> "just work".
>>>
>>> Another issue I was having was with node pathing issues. Also, the
>>> Jessie package was not installing correctly, e.g. the deb purported to
>>> install, but there were no binaries anywhere that I could find. Total
>>> amateurish 90's package maintainer BS . . .
>>>
>>> On Thu, Dec 10, 2015 at 1:41 PM, Robert Nelson 
>>> wrote:
>>>
 On Thu, Dec 10, 2015 at 2:36 PM, William Hermans 
 wrote:
 > I'm probably going to stick with 0.10.41

 No luck with 4.2.x?

 Regards,

 --
 Robert Nelson
 https://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/d/optout.

>>>
>>>
>>
>

-- 
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/d/optout.


[beagleboard] X15 starting price

2015-12-10 Thread k . carpenter . life
Is there an estimated starting price on the new X15 boards?

-- 
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/d/optout.


Re: [beagleboard] X15 starting price

2015-12-10 Thread Gerald Coley
http://elinux.org/Beagleboard:BeagleBoard-X15

Gerald

On Thu, Dec 10, 2015 at 8:40 PM,  wrote:

> Is there an estimated starting price on the new X15 boards?
>
> --
> 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/d/optout.
>



-- 
Gerald

ger...@beagleboard.org
http://beagleboard.org/

-- 
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/d/optout.


Re: [beagleboard] Re: X11VNC fighting me tooth and nail. Would really appreciate some help.

2015-12-10 Thread Nuno Sucena Almeida
On 12/07/2015 10:36 AM, Bill Dussault wrote:
> How do I get into the logfile? I did not know about that
> Thanks 

Run x11vnc on thet beaglebone without the '-bg' argument.  You probably
also need to run it as sudo, if you are using the '-auth' argument.

I'm confused about your more recent email. You have to run x11vnc on the
beaglebone, not on your laptop. On the laptop (client), you need to run
a vnc client, e.g., vinagre.

Can you explain what you are trying to do ?

regards,
Nuno

-- 

-- 
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/d/optout.