[beagleboard] .net core GPIO Library

2020-08-15 Thread Philip Munts
Try libsimpleio:

https://www.nuget.org/packages/libsimpleio/

You will need to install the Linux shared library libsimpleio.so per 
instructions at:

https://github.com/pmunts/libsimpleio

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/87de19b0-eac5-4207-a732-a989b75437a5o%40googlegroups.com.


[beagleboard] Re: What are we doing about the conversation about software, source, hardware, and beagleboard.org boards currently?

2019-11-12 Thread Philip Munts
>P.S. I guess you have smarts and history in this dept. Cool! Serious, I am 
>glad you replied. Not everyone uses their BBB a lot these days and I will 
>continue to state this >fact until more books are produced on the subject. I 
>mean, yea, people put out ideas and books when they can I guess but not as 
>much as before, e.g. circa '15. Anyway, and >again, thank you for the reply! 
>If you need anything or if you just need a place to get hired, let me know. I 
>am a part-time worker but I could hire out if you are a teacher >of sorts or 
>an instructor. 

I'm a embedded systems consultant, and either between assignements, or taking a 
sabbatical year, or retired.  I don't know which it is yet.  Take further 
discussion offline; my email address is on the website.

Phil

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/c8396d20-df89-413f-9151-d5b3aa95faff%40googlegroups.com.


[beagleboard] RE: What are we doing about the conversation about software, source, hardware, and beagleboard.org boards currently?

2019-11-10 Thread Philip Munts
I've written some application notes (available at 
https://github.com/pmunts/muntsos/tree/master/doc) that I always thought should 
become chapters in a book about embedded systems development using Linux.  Two 
of them are directly applicable to the BeagleBone and kin and most of the 
others are indirectly applicable.  I'd appreciate it if you would read through 
them and tell me how well (if at all) they would satisfy your search for 
information.

Phil

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/b5be2621-02e3-4f0d-937d-396addc1c089%40googlegroups.com.


Re: [beagleboard] Pins and Port configuration in the Beagleboard xM

2019-03-03 Thread Philip Munts
Sure, go ahead and use it.

Phil

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/68027d04-9df2-499a-95ca-1d31ea9b1375%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Pins and Port configuration in the Beagleboard xM

2019-03-03 Thread Philip Munts
config-pin.c isn't part of the kernel; it is just a C reimplementation of the 
userland config-pin script.  It isn't a perfect replacement.  It eliminates the 
platform configuration tables in the script, but it has some limitations.  One 
that comes to mind is that config-pin -q will display "default"  for a pin that 
has the default configuration, but doesn't tell you *what* the default 
configuration is...

Phil

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/c30d6d18-e387-4d97-90e5-d9f3a274baa1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Pins and Port configuration in the Beagleboard xM

2019-03-03 Thread Philip Munts
You could try my config-pin replacement written in C:  
http://git.munts.com/muntsos/bootkernel/initramfs/config-pin.c

Unlike the original config-pin script, my replacement derives all pin 
configuration information by reading files in /sys, and doesn't have any 
platform dependencies.  I haven't used an xM in years but it seems like it 
ought to work.

Phil

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/b7742cc3-1132-46ab-8d77-49023e64305d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] GNU Modula-2 for the BeagleBone

2018-11-17 Thread Philip Munts
I have finally gotten around to building a native GNU Modula-2 compiler package 
for Debian Stretch on the BeagleBone.  It took about 9 hours to build on a 
SanCloud BeagleBone Enhanced with 1 GB of RAM.  I wasn’t able to build 
successfully on a regular BeagleBone with only 512 MB of RAM.

Packages built from 8.2.0+gm2-git-latest for the BeagleBone, Raspberry Pi 1, 
and Raspberry Pi 2 (as well as x86 and x86-64) are available from my Debian 
package repository at http://repo.munts.com/debian9.  These packages install 
everything in /usr/local/gm2.

Modules for libsimpleio (http://git.munts.com/libsimpleio) are under (slow) 
development.

Phil

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/bcd276b7-4d83-48eb-a943-44f9a5d1e005%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] GPIO failed: No such file or directory

2018-11-04 Thread Philip Munts
It is a race condition.  The GPIO pin files don't exist until the pin is 
exported by writing the pin number to /sys/class/gpio/export.  The pin files 
are created neither instantaneously nor synchronously.

Your code or library is trying to open one of the pin files after exporting but 
before the pin file is ready.

Phil

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/9ff7a543-beb1-4d22-946f-29d50390ade1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Grove adapter for PocketBeagle

2018-10-24 Thread Philip Munts
I couldn't find anything like this so I had to develop it myself:

https://www.tindie.com/products/pmunts/mikrobus-grove-adapter-3/

It works great in a BeagleBone Click Shield or a mikroBUS Cape, too.

Phil

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/87f9c56f-0ad8-4f94-a7c3-389348fd88ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Off the Wall: .Net Core on the PocketBeagle

2018-08-19 Thread Philip Munts
Here is a seriously off the wall but fun project:  How to develop .Net Core 
applications to run on a PocketBeagle.  I think the PocketBeagle is the 
smallest system that can run .Net Core (at least among boards that are commonly 
available).

http://git.munts.com/arm-linux-mcu/doc/AppNote11-PocketBeagle-Gadget.pdf
http://git.munts.com/arm-linux-mcu/doc/AppNote12-Flash-LED-C%23-Core.pdf
http://git.munts.com/libsimpleio

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/0b6a2c8b-9e53-46ac-a66b-a551fd634633%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] ANNOUNCE: MuntsOS Embedded Linux for BeagleBone

2018-04-07 Thread Philip Munts
We are pleased to announce MuntsOS, an embedded Linux environment, with support 
for BeagleBone and Raspberry Pi boards.  MuntsOS is a RAM resident operating 
system environment that is very easy to install (just unzip one file to an SD 
card) and very lightweight.  It is particularly suited to headless embedded 
applications.

Cross-toolchains for Ada, C, C++, Fortran, and Free Pascal are provided.  Run 
time interpreters for C#, Java, and Python 3 are also provided.  Applications 
written for MuntsOS typically use libsimpleio for controlling I/O devices and 
can be highly portable even between board families like the BeagleBone and the 
Raspberry Pi.

MuntsOS is entirely open source.  All original works are copyrighted and 
licensed under a 1-clause BSD license.  Binaries are generally GPL because of 
the components they contain.

http://git.munts.com/arm-linux-mcu

http://git.munts.com/libsimpleio

Philip Munts, President
Munts AM Corp dba Munts Technologies

p...@munts.net

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/f421b87a-222d-4ac3-9172-81103208ce51%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] PocketBeagle and TSA :)

2018-03-22 Thread Philip Polstra
I do this all the time.  Never had any trouble.

On Thu, Mar 22, 2018 at 10:47 AM Fred Kerr  wrote:

> Hello!
>
> I am traveling soon to Illinois from Portland, OR and have a few questions.
>
> Are there good HW stores like Fry's near St. Louis, MO or Jacksonville,
> IL? :)
>
> What's the best way to not freak out TSA if I travel with a Pocket Beagle
> or two and some prototyping things? :)
>
> I know lithium batteries need to be in carry-on. I just have a couple
> standard cell phone chargers and external batteries that I intend to bring.
>
> Has anyone traveled with equipment like this? (Solderless breadboards,
> pocket beagle, some cables, wires)
>
> Thanks!
>
> Fred Kerr
>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/beagleboard/0d6c473d-3e0c-4524-ba5c-f8c5f3dae257%40googlegroups.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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CANt-8McgcB9ufk4sJyPyzu_VZTqS6XuEsuOAAmAYaNpZk0Ef1A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Software development Services for Beaglebone sought

2018-02-22 Thread Philip Munts
I can help you.  Contact me directly at p...@munts.net.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/79e7fa15-d3d2-46da-a24b-327661dbb48e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Use a Beaglebone as a USB client for HID

2018-02-14 Thread Philip Polstra
You can easily do this.  I gave a talk about this at DEFCON 2 years ago
called One Device to Pwn Them All.  You should be able to find this online
multiple places.  It is also in my latest book USB Forensics.

On Wed, Feb 14, 2018, 12:41 AM Joseph Foster 
wrote:

> I am wanting to use a Beaglebone (green) as a USB client for HID input as
> a personal project. Can the Beaglebone do this out of the box with certain
> pin setup? If so what libraries can I use to do this? PRU is always an
> option if I have to, but I'd rather not learn in depth the USB protocol at
> this time. If the board can't do this out of box, is there an IC I can use
> to make a custom cape?
>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/beagleboard/2f25f12f-8ae4-45cc-85ca-99b4845a6fc1%40googlegroups.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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CANt-8MdMx6jsVRL_0zxdjSxMedpcLDuDXB105dYHbQHCtLN03A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Error in am335x-pocketbeagle.dts

2017-10-27 Thread Philip Munts
While testing a 7 Segment Click, I found an error 
in am335x-pocketbeagle.dts:  The mode for P2_25 (SPI1 MOSI) should be 4 
(spi1_d1), not 5 (spi1_cs0).

@@ -660,7 +660,7 @@
 
  /* P2_25 (ZCZ ball E17) */
  P2_25_default_pin: pinmux_P2_25_default_pin { pinctrl-single,pins = <
- AM33XX_IOPAD(0x096c, PIN_OUTPUT_PULLUP | INPUT_EN | MUX_MODE5) >; }; /* 
uart0_rtsn.spi1_cs0 */
+ AM33XX_IOPAD(0x096c, PIN_OUTPUT_PULLUP | INPUT_EN | MUX_MODE4) >; }; /* 
uart0_rtsn.spi1_d1 */
  P2_25_gpio_pin: pinmux_P2_25_gpio_pin { pinctrl-single,pins = <
  AM33XX_IOPAD(0x096c, PIN_OUTPUT | INPUT_EN | MUX_MODE7) >; }; /* 
uart0_rtsn.gpio1_9 */
  P2_25_gpio_pu_pin: pinmux_P2_25_gpio_pu_pin { pinctrl-single,pins = <
@@ -668,7 +668,7 @@
  P2_25_gpio_pd_pin: pinmux_P2_25_gpio_pd_pin { pinctrl-single,pins = <
  AM33XX_IOPAD(0x096c, PIN_OUTPUT_PULLDOWN | INPUT_EN | MUX_MODE7) >; }; /* 
uart0_rtsn.gpio1_9 */
  P2_25_spi_pin: pinmux_P2_25_spi_pin { pinctrl-single,pins = <
- AM33XX_IOPAD(0x096c, PIN_OUTPUT_PULLUP | INPUT_EN | MUX_MODE5) >; }; /* 
uart0_rtsn.spi1_cs0 */
+ AM33XX_IOPAD(0x096c, PIN_OUTPUT_PULLUP | INPUT_EN | MUX_MODE4) >; }; /* 
uart0_rtsn.spi1_d1 */
  P2_25_i2c_pin: pinmux_P2_25_i2c_pin { pinctrl-single,pins = <
  AM33XX_IOPAD(0x096c, PIN_OUTPUT_PULLUP | INPUT_EN | MUX_MODE3) >; }; /* 
uart0_rtsn.I2C1_SCL */
  P2_25_uart_pin: pinmux_P2_25_uart_pin { pinctrl-single,pins = <

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/33e0c1f3-8f29-412b-b28e-fd9c84563a30%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] PocketBeagle SPI device nodes

2017-10-23 Thread philip . munts
My PocketBeagle, running a custom 4.9.57 kernel and standard device tree, 
creates the following SPI device nodes:

usbgadget# ls -l /dev/spi*
crw-rw1 root gpio  153,   0 Jan  1 00:00 /dev/spidev1.0
crw-rw1 root gpio  153,   1 Jan  1 00:00 /dev/spidev1.1
crw-rw1 root gpio  153,   2 Jan  1 00:00 /dev/spidev2.0
crw-rw1 root gpio  153,   3 Jan  1 00:00 /dev/spidev2.1

Why are there four device nodes?  Normally there should be a single device 
node for each slave select, and the
PocketBeagle pinout only lists one slave select for each SPI bus controller.

Which device nodes correspond to which slave selects?  (It appears to me 
that spidev1.x might correspond to McSPIO0
and spidev2.x might correspond to McSPI1).

Phil

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/bafe7c4e-797f-45fd-bad3-fd0820c58025%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Wireless mesh networking

2017-07-24 Thread Philip Polstra
Are you wanting to do this on WiFi or something else.  I have zigbee capes
for connecting these together.

On Mon, Jul 24, 2017, 5:09 AM  wrote:

> I am use batman-adv with openwrt router
>
> 在 2014年9月27日星期六 UTC+8上午5:30:02,Brian Anderson写道:
>
>> Hi all,
>>
>> I am interested in setting up a wireless mesh network using a collection
>> of BBBs (and possibly other devices).  Does anyone have experience setting
>> up a wireless mesh network using BBB?
>>
>> I am not really interested in a so-called "wireless distribution system"
>> that is used to extend an SSID across a wide area using wireless mesh
>> networking.  I am much more interested in setting up a network of
>> cooperating nodes that talk with each other (and to the internet via a
>> gateway/mesh portal connected simultaneously to the internet and the mesh).
>>
>> In particular, I'm interested in:
>>
>>   * What distro and kernel are you using?
>>   * Ideally this would be with one of RCNs Debian images, but if not,
>> I'm interested in what you might have used.
>>   * If you have done something with a Linux based system other than a
>> BBB, I'd like to know about that too.
>>   * What mesh routing protocol was used?  Batman, Babel/AHCP, HWMP, OLSR,
>> ...
>>   * Steps to configure the mesh network and gateway.
>>   * Did you use 802.11s?  If so, presumably using the 802.11s support in
>> the kernel?
>>   * WiFi chipset that was used (presumably supporting mesh mode).
>> SOFTMAC or HARDMAC?
>>
>> I have researched the topic fairly extensively and can probably set
>> something up via trial and error myself.  Prior to diving into that, I
>> wanted to see if anyone has already done some work with wireless mesh
>> networking and BBB (or something else) and would be willing to share their
>> experience and knowledge!
>>
>> Thanks in advance.
>>
>> Cheers,
>>
>> ba
>>
>> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/beagleboard/3cca0a68-eab5-49b7-b99f-3d46165ae33c%40googlegroups.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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CANt-8MdUC07uGSdScdzzVX5xfdgQkudMkHaR21LqH3ofb1LfaQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: am i doing this right?

2017-05-30 Thread philip k
ah cool, cool.  i had read and done some math, but i was totally wrong in
my understanding of how the circuit was set up.  thanks for steering me in
the right direction!

On Tue, May 30, 2017 at 6:32 PM, Dennis Lee Bieber 
wrote:

> On Tue, 30 May 2017 10:50:55 -0700 (PDT), philip k
>  declaimed the following:
>
> >i'm attempting a build.
> >
> >I will be using 5 pressure sensors.  here are the specs:
> >
> >Pressure Range: 0-200 psi
> >Output: 0.5V – 4.5V linear voltage output. 0 psi outputs 0.5V, 100 psi
> >outputs 2.5V, 200 psi outputs 4.5V
>
> I'm presuming this is the critical specification...
>
> >Working Temperature: -40—+125ºC;.
> >Accuracy: ±1%FS;
> >Thread: 1/8"-27 NPT.
> >Overload Capacity: 2 times;
> >Pressure Medium: The gas and liquid which is compatible with 316L
> stainless
> >steel;
>
> Don't think knowing what size pipe thread it uses means much
> here...
>
> >Load Resistance: ?(supply power-6.5V/0.02A)?;
>
> This might be important...
>
> >Wiring: Red for IN+.  Black for GND.  Green for OUT.
> >
> >would i be correct by running a 600? resistor parallel to each sensor to
> >bring the voltage down to ?1.8v and go from pin 7 or 8 to the five
> sensors,
> >then run sensor1 signal and a 600ohm resistor in parallel to pins P9 35,
> >sensor2 signal and a 600ohm resistor in parallel to P9 36, and so on?
> >
>
> I doubt it.
>
> What you most likely need is a voltage divider system (use fixed
> width
> font):
>
> 4.5V--+
>   |
>   ~ ?1
>   |
>   + 1.8V ->
>   |
>   ~ ?2
>   |
> GND --+--->
>
> where ~ is resistor, values to be determined (do a Google on how to
> determine a voltage divider -- I'm not going to do all the work )
>
> {Unstudied: 4.5 / 1.8 = 2.5; say a 240Ohm for ?2, total needs to be 240*2.5
> => 600, so ?1 would be 600 - 240, or 360Ohm...}
>
> --
> Wulfraed Dennis Lee Bieber AF6VN
> wlfr...@ix.netcom.comHTTP://wlfraed.home.netcom.com/
>
> --
> 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/4HIZ1jOF-20/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> beagleboard+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/beagleboard/1cvric9sgrbie713a2ghckmep0unioeiq8%404ax.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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CAKKROwaU%3DsomJkSiB%3DbRHbThaGaReE6oV57aNP8nQMpq_UfQPA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] am i doing this right?

2017-05-30 Thread philip k
i'm attempting a build.  

I will be using 5 pressure sensors.  here are the specs:

Pressure Range: 0-200 psi
Output: 0.5V – 4.5V linear voltage output. 0 psi outputs 0.5V, 100 psi 
outputs 2.5V, 200 psi outputs 4.5V
Working Temperature: -40—+125ºC;.
Accuracy: ±1%FS;
Thread: 1/8"-27 NPT.
Overload Capacity: 2 times;
Pressure Medium: The gas and liquid which is compatible with 316L stainless 
steel;
Load Resistance: ≤(supply power-6.5V/0.02A)Ω;
Long-term stability: ± 0.2%FS/year;
Temperature Effect on Zero: Typical: ±0.02%FS/ºC; Maximum: ±0.05%FS/ºC;
Temperature Effect on Sensitivity: Typical: ±0.02%FS/ºC; Maximum: 
±0.05%FS/ºC;
Shock Resistance: 100g;
Anti-Shock: ≤±0.01%FS(X,Y,Z axes, 200Hz/g);
Response Time: ≤1ms;
Insulation Resistance: >100mΩ  500VDC;
Explosion-proof Class: ExiaTTCT6;
Electromagnetism Compatibility: EN50081-1; EN50082-2; IEC6 1000-4-3 ;
Wiring connector: water sealed quick disconnect.  Mating connector and wire 
harness (pigtail) is included.
Wiring: Red for IN+.  Black for GND.  Green for OUT.

would i be correct by running a 600Ω resistor parallel to each sensor to 
bring the voltage down to ≤1.8v and go from pin 7 or 8 to the five sensors, 
then run sensor1 signal and a 600ohm resistor in parallel to pins P9 35, 
sensor2 signal and a 600ohm resistor in parallel to P9 36, and so on?

thanks for any 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/467d3f8a-0af7-4b51-8070-2206a82a60c4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] How to enable writing on USB mass storage gadget?

2017-02-27 Thread Philip Polstra
A little talk I did at DEFCON 23 about the BBB and the USB gadget.
https://www.youtube.com/watch?v=F9cYW7oPNw4

On Mon, Feb 27, 2017 at 11:38 AM Juliusz Chroboczek  wrote:

> What's the expected way to make the USB mass storage gadget writeable?
> Should I simply edit the am335x_evm.sh script, or is there some way that
> will not be overwritten on upgrades?
>
> Thanks,
>
> -- Juliusz
>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/beagleboard/87k28bh9nm.fsf%40trurl.
> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CANt-8MdHEqYwgWYxPz9Dkke4D0czcNaTJBh_bcTE5ROZk3aEPQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: ssh using USB

2017-02-12 Thread Philip Polstra
BBB uses USB multi_g driver which supplies ethernet and USB mass storage
that exports the built in flash storage.  You can learn more about how this
works from my DEFCON 23 talk "1 device to pwn them all".  Just Google it
for video and slides.

On Sun, Feb 12, 2017, 4:48 AM Chris Green  wrote:

> vreg  wrote:
> > [-- multipart/alternative, encoding 7bit, 48 lines --]
> >
> > [-- text/plain, encoding 7bit, charset: UTF-8, 15 lines --]
> >
> > Hi,
> >
> > How does the BBB manage to allow ssh-ing using just the USB cable and a
> > fixed IP address? I have a RPi too and I need an Ethernet cable and to
> know
> > the IP address everytime in order to SSH into it...
> >
> You need a decent DHCP server on your network!  :-)
>
> I have lots (well quite a few) devices on my home network, e.g. family
> members computers (3), a printer, a DECT phone base station, a RPi,
> sometimes a BBB, etc.
>
> Most modern ADSL routers sadly don't handle the system's names
> properly (or at all actually).  So I run my own DHCP server on the RPi
> (it' called dnsmasq) and that *does* handle names properly.  Since the
> dnsmasq on the RPi also acts as a local DNS server it can find all my
> systems by name with no extra effort on my part.
>
> Once you have more than one or two systems it's a real pain not having
> a local naming service.
>
> --
> Chris Green
> ·
>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/beagleboard/mhn5nd-qe2.ln1%40esprimo.zbmc.eu
> .
> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CANt-8Me%3DQkonLGUy4tT_MixWweOd9i8YefpC0qKzrXTBUigHVQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] 4.3" Display Cape on BBB

2017-02-06 Thread Philip Polstra
Are you using the 4D systems cape? I have the 4.3 and 7 inch versions of
these on several BBB with no issues.

On Mon, Feb 6, 2017, 8:10 AM  wrote:

> Hi!
>
> Has anybody managed to get a 4.3" Display Cape working on BBB with a
> recent Debian image (e.g. 8.6)?
> I have uncommented dtb=am335x-boneblack-emmc-overlay.dtb in uEnv.txt as
> per the instructions at https://github.com/beagleboard/bb.org-overlays,
> which sort of gets the display to work, however the interface is too slow
> to be usuable - "top" indicates that XOrg has CPU usage >90%.
> 7" Display Cape seems to work fine.
> U-Boot version is "U-Boot SPL 2016.11-rc3-2-g73df7f7 (Nov 04 2016 -
> 15:20:36)"
>
> Any ideas?
>
> Thank You
> Dane
>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/beagleboard/e656bdb4-499c-4976-89b7-a1792f14c43d%40googlegroups.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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/CANt-8McUY%2BzT6jGVeKre9Yrw1Wi7eBZyudRAMrBsB9A9uqj41g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: The Deck 2.0 (Linux for penetration testers) for BBB now available

2016-02-04 Thread Philip Polstra
Yes.  Contact me off the list.

On Thu, Feb 4, 2016, 5:49 PM   wrote:

>
>
> On Thursday, August 21, 2014 at 12:57:46 PM UTC-7, Philip Polstra wrote:
>>
>> The Deck 2.0, a special BBB Linux distribution for security penetration
>> testers, is now available on SourceForge at
>> http://sourceforge.net/projects/thedeck/files/Latest/.  This new version
>> is chuck full of hacking goodness in over 4k packages and 12GB+.  If you
>> don't wish to download 6GB of files from SourceForge you can also buy
>> preloaded microSD cards at
>> https://specialcomp.com/beagleboard/thedeck.htm.
>>
>> More info:
>> http://store.elsevier.com/Hacking-and-Penetration-Testing-with-Low-Power-Devices/Philip-Polstra/isbn-9780128007518/
>>
>
> Hi Dr. Phil - would it possible to pay you via PayPal for the 32 GB
> microSDHC with The Deck V2 installed on it for the Beagle Bone Black?
>
>
> --
> 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] BeagleBone Green and 4DSystems LCD

2016-02-04 Thread Philip Polstra
It works just fine for me with the stock Debian on the BB Green.

On Sat, Dec 5, 2015 at 4:43 PM rafalc  wrote:

> Hi,
>
> Does enybody tried to use 4D System's LCD Cape (
> http://www.4dsystems.com.au/product/4DCAPE_70T/) with BeagleBoard Green?
> I know, that LCD was designed for Black, but Green is newer, so maybe LCD
> does work.
>
> regards,
> Rafał.
>
> --
> 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: Using BeagleBoneBlack to emulate USB keyboard?

2015-12-01 Thread Philip Polstra
I did a talk about how to do this at DEFCON this year.   One device to pwn
them all.  Files you need here
https://media.defcon.org/DEF%20CON%2023/DEF%20CON%2023%20presentations/DEFCON-23-Phil-Polstra-Extras.rar
On Tue, Dec 1, 2015 at 2:12 PM Ed of the Mountain 
wrote:

>
> Linux Gadget Drivers + BeagleBone hardware should allow you to emulate a
> USB keyboard.
> http://www.armadeus.com/wiki/index.php?title=USB_Gadget
>
> If you are emulating a keyboard, no PC driver is needed.
>
> -Ed
>
>
> On Monday, November 30, 2015 at 8:49:57 AM UTC-6, William Park wrote:
>>
>> Hi,
>>
>> I have an old BeagleBone Black (A5A, 2GB version), and I would like to
>> use it to emulate an external USB keyboard.  I was thinking... I would
>> SSH into BBB and run some commands to send keymap data to PC through
>> - either mini-USB port
>> - or debug serial-to-USB cable.
>> As far as PC is concerned, it's receiving key presses.
>>
>> Is this possible?
>> Where can I start my reading?
>> --
>> William
>>
> --
> 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] USB Mass Storage/Fix dyndbg value in U-boot?

2015-09-26 Thread Philip Polstra
What OS are you running on the BBB?  In most cases the BBB will export a
Linux USB gadget which is a composite device with mass storage and Ethernet
enabled by default.  Your Mac may need a driver.  Also passing USB devices
through to VM is not automatic.

On Sat, Sep 26, 2015, 5:17 AM Rick Mann  wrote:

> I'm unable to get the USB Mass Storage thing to work on my Mac, or my
> Ubuntu 14.04 VM. It's the little port, right, the mini-USB connector?
> Anyway, when I interrupt U-Boot, I did this:
>
> > => setenv umsmedia 0; gpio set 53; run findfdt; setenv mmcdev 1; setenv
> bootpart 1:1; run mmcboot
> >
> > FAILSAFE: U-Boot UMS (USB Mass Storage) enabled, media now available
> over the usb slave port ...
> > UMS: disk start sector: 0x0, count: 0x734000
> > musb-hdrc: peripheral reset irq lost!
>
> When I connect my Mac to the small port, the Mac reports a USB download
> gadget, not a mass storage device. When I try to connect that to the Linux
> VM, I don't see anything (but don't know where to look).
>
> Alternatively, how do I change the dyndbg setting that U-Boot is loading?
>
> The problem:
>
> I updated my uEnv.txt to turn on more debugging output, and I think it
> hosed part of the boot process, which times out now (it just repeats the
> last bit over and over):
>
> > Loading, please wait...
> > fsck from util-linux 2.25.2
> > BEAGLEBONE: recovering journal
> > BEAGLEBONE: clean, 43481/236176 files, 285892/943872 blocks
> > [9.931380] rtlwifi: Firmware rtlwifi/rtl8192cufw_TMSC.bin not
> available
> > [   10.860147] libphy: PHY 4a101000.mdio:01 not found
> > [   10.864972] net eth0: phy 4a101000.mdio:01 not found on slave 1
> >  Starting Journal Service...
> > [ TIME ] Timed out waiting for device dev-ttyGS0.device.
> > [   95.707797] systemd[1]: Timed out waiting for device
> dev-ttyGS0.device.
> > [DEPEND] Dependency failed for Serial Getty on ttyGS0.
> > [   95.727835] systemd[1]: Dependency failed for Serial Getty on ttyGS0.
> >  Starting Journal Service...
> > [  OK  ] Stopped Trigger Flushing of Journal to Persistent Storage.
> >  Stopping Journal Service...
> > [  OK  ] Stopped Journal Service.
> >  Starting Journal Service...
> > [  OK  ] Started Journal Service.
> >  Starting Trigger Flushing of Journal to Persistent Storage...
> > [  OK  ] Started Trigger Flushing of Journal to Persistent Storage.
> > [ ***  ] A start job is running for LSB: Raise network interf...13s / no
> limit)
>
> These variables don't seem to be loaded into the environment, and I don't
> see an obvious command for adjusting them:
>
> > Running uname_boot ...
> > loading /boot/vmlinuz-4.1.4-ti-r9 ...
> > 8259336 bytes read in 473 ms (16.7 MiB/s)
> > loading /boot/dtbs/4.1.4-ti-r9/am335x-boneblack-emmc-overlay.dtb ...
> > 55644 bytes read in 28 ms (1.9 MiB/s)
> > loading /boot/initrd.img-4.1.4-ti-r9 ...
> > 4496957 bytes read in 272 ms (15.8 MiB/s)
> >
> > debug: [console=ttyO0,115200n8 dyndbg=file drivers/of* +pflm; file
> drivers/i2c* +pflm; file drivers/remoteproc +pflm; file sound* +pflm; file
> pinctrl/* +pflm; file drivers/gpio/* +pflm; file drivers/regulator* +pflm;
> file *cape* +pflm root=UUID=69f859b1-c308-41c9-8ca7-a3d0042031e8 ro
> rootfstype=ext4 rootwait fixrtc coherent_pool=1M quiet] ...
> >
> > debug: [bootz 0x8200 0x8808:449e3d 0x8800] ...
>
>
> Thanks…
>
> --
> Rick Mann
> rm...@latencyzero.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] Maker Faire New York

2015-09-16 Thread Philip Polstra
If anyone is up for a Beagle user dinner on Saturday night e-mail me.  I
might also be able to bring a couple of XBee capes for anyone that is
interested in using 802.15.4 and/or ZigBee with the BBB.

On Wed, Sep 16, 2015 at 1:11 PM Jason Kridner 
wrote:

> There won't be an official BeagleBoard.org booth at Maker Faire New York
> this year. We'll be back next year, but joyous personal activities have me
> engaged at this time.
>
> What about others in the community? Anyone going that you know of to show
> of BeagleBone projects?
>
> Some ones I already know about:
> * Phil Polstra (security expert, book author, distribution maker) -
> http://makerfaire.com/maker/entry/52595/
> * CubeTube - cubes from the near future (has a BeagleBone connector) -
> http://makerfaire.com/maker/entry/51977/
> * Getting Started with BeagleBone by David Scheltema -
> http://makerfaire.com/maker/entry/52857/
> * Amazing LED projects like Megascroller from NYC Resistor -
> http://makerfaire.com/maker/entry/52120/
> * The perfect coffee maker - http://makerfaire.com/maker/entry/52010/
> * Full Spectrum Laser (SLA printers with BeagleBone Black) -
> http://makerfaire.com/maker/entry/53113/
> * Seeed Studio - http://makerfaire.com/maker/entry/52873/
> - Orbital Rendersphere - http://makerfaire.com/maker/entry/52257/
>
>
> Ones I'm not sure about
> * OpenROV?
>
> Anyone know of ones I'm missing? Anyone just attending?
>
> --
> 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] Good small (e.g. 7 to 10 inch) displays for BBB

2015-08-25 Thread Philip Polstra
I have had good luck with the 4D systems capes.  You will find that with
any LCD display like this the power requirements are pretty high, however.
Most of the power is for the backlight.  You might be able to find a LED
backlit system, but that will likely be more money.

On Tue, Aug 25, 2015 at 9:48 AM  wrote:

> I'm after a small display to use with a BBB, as in one that can display
> the Debian/Linux desktop as I want to be able to run the BBB
> standalone rather than via network and ssh (which is what I normally
> do).
>
> Low[ish] power is important too.
>
> Any particular recommendations?  Direct from China type stuff is
> perfectly OK as I can wait and the prices are usually good.  I just
> want to know that it's compatible.
>
> --
> Chris Green
> ·
>
> --
> 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: RAM 1GB option

2015-08-19 Thread Philip Polstra
I would like to see the price difference.  It would be nice to have a
cheaper board and perhaps a premium board for some things.  The upgrade
from 2GB to 4GB on the board doesn't do anything for me since my OS is much
larger than that, but yet only the more expensive 4GB boards are
available.  Would hate to see something similar happen with the RAM.  The
only reason the BB Green is at all attractive to me is not because it has
the Grove connectors, but because it is cheap and I could use it for my
hacking drones.  For the times that I need more RAM the 1GB boards that are
already available are nice.

On Wed, Aug 19, 2015 at 11:22 AM Jason Kridner 
wrote:

> It'd be great to get feedback from the people on the list if they'd
> pay for the extra $$ for 1GB if the 512MB stopped being available
> (ie., Rev D vs. BeagleBone Black Gig). Supposedly the Sancloud folks
> were going to make a 1-Gbyte-RAM + 1-Gbit-Ethernet version per
>
> http://beagleboard.org/Community/Forums?place=msg%2Fbeagleboard%2FRoVnCt6EFDk%2FrjBJZZfcR2kJ
> ,
> which was the only real reason we steered away from doing it
> ourselves. They seem to have built some PCBs, but I feel it has been
> quite a while in the waiting.
>
> Anyway, always good to get community feedback on our direction.
>
> On Tue, Aug 18, 2015 at 11:22 PM, Gerald Coley 
> wrote:
> > Green is the Seed Studio $39 special.
> >
> > It will cost more. If Jason approves the cost increase we can make it
> happen
> > on a Rev D board.
> >
> > X15 with 4GB would be nice. Try $40 more! I just want to see the 2G
> working
> > first.
> >
> > Gerald
> >
> >
> > On Tue, Aug 18, 2015 at 9:48 PM, William Hermans 
> wrote:
> >>
> >> 1GB ram would be awesome on the BBB.
> >>
> >> So whats this "green initiative" ? Because an X15 with 4GB ram would be
> >> very welcome too . . . I mean if you're paying ~$200 already, whats
> another
> >> 10-20 bux ?
> >>
> >> On Mon, Aug 17, 2015 at 6:22 AM, Gerald Coley 
> >> wrote:
> >>>
> >>> Well, I am not saying it is or it sin't. Words mean different things to
> >>> different people and if LOGO we an acronym, it could mean anything!
> >>>
> >>> Gerald
> >>>
> >>>
> >>> On Sun, Aug 16, 2015 at 10:21 PM, rh_ 
> >>> wrote:
> 
>  On Sun, 16 Aug 2015 09:58:34 -0500
>  Gerald Coley  wrote:
> 
>  > A board without the beagleboard.org LOGO or BeagleBone Black LOGO
> on
>  > it.
>  >
>  > In other words, one built by someone from the open source
> information
>  > and using their own assembly shop and their own testing process.
> 
>  Thanks. I absolutely misread it as NoLgo and was not coming up with a
>  reasonable unraveling of the NoLgo acroynm. I thought Lgo was a new
>  compound that is unhealthy that I had never heard of. Like lead-free.
> 
>  --
>  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.
> >>
> >>
> >> --
> >> 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.
>
> --
> 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
--- 

Re: [beagleboard] WiFi with external antenna for BBB - recommendations?

2015-08-18 Thread Philip Polstra
Most adapters work.  If you are just trying to connect to a network you
don't have to be picky.  If you are using your BBB for hacking like I am,
then you might want something like the Alfa AWUS036H.

On Sat, Aug 15, 2015 at 2:48 PM  wrote:

> I want a WiFi adapter to use with my BBB that has an external antenna
> connection.  Does anyone have any suggestions or recommendations
> please.
>
> Do generic USB Wifi adapters work OK with the BBB?
>
> --
> Chris Green
> ·
>
> --
> 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] RAM 1GB option

2015-08-14 Thread Philip Polstra
Great to see this out there as an option!  I'll have to let some of my
customers know it is available if they need a little extra power on their
hacking drones.

On Thu, Aug 13, 2015 at 1:27 PM Bill Mar  wrote:

> Now offering 1GB DRAM option on our BeagleBoneBlack Rev C NoLgo board.
> https://specialcomp.com/beaglebone/#22902
>
> Special Computing has restarted full production of our NoLogo board
> products.
>
> We will release more stock for public sale after our internal project
> needs are met.
>
>
> Bill Mar
> Special Computing
> 480-818-5745
>
> On Thu, Aug 13, 2015 at 8:46 AM, Maxim Podbereznyy 
> wrote:
>
>> Hi!
>>
>> Are there any plans to increase RAM to 1GB instead of 512MB at BBB? I
>> understand that this move can only be based on support of the majority of
>> user, therefore I wonder how many people would vote for this
>>
>> Max
>>
>> --
>> 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.


[beagleboard] Making a lunch box computer with the BBB

2015-08-01 Thread Philip Polstra
Here is a fun video I made with my kids about how you can build a lunch box
computer from the BBB.  Total cost is about $175 including the lunch box.

https://youtu.be/2HFWz1Yexhk

-- 
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] Is a beagle for me?

2015-07-28 Thread Philip Polstra
Beagle works out of the box and is more powerful than the pi.  That's
reason enough to get one

On Tue, Jul 28, 2015, 8:31 PM   wrote:

> I am new to the SBC scene really, I have already got a Cubieboard2 and a
> RPi B+ but is a beagle worth adding to my collection?
>
> I am looking at the beagle for a programming machine for python, I am
> going to setup my RPi as a console and my CB2 as a media machine, but would
> a beagle meet my requirements for programming?
>
> I am looking at the 4GB version
>
> Sorry if its short I don't really know what to ask about beagles.
>
> Thanks!
>
> --
> 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] DEFCON BBB talks

2015-07-21 Thread Philip Polstra
4 days in Vegas at the world's largest hacker con for $230.  Something for
everyone.  Bigger than ever this year with villages for hardware hacking,
crypto, lock picking, wireless, and probably some I forgot.  Parties every
night with great performers.

In addition to my two talks, I'll be demoing the BBB and CatchWire at the
first ever DEFCON Demo Labs this year.  We will also be giving away some
stuff from WAW Technologies including two gift boxes worth more than $500
each with:

A CatchWire appliance and all accessories

XBee radios

XBee USB adapters

32GB microSD running a special version of The Deck Linux

My "Hacking & Penetration Testing with Low Power Devices" book and

an early release of my "Linux Forensics" book.


I do have some no-wait tickets available at face value for anyone not
wanting to wait in line with 15,000 people.  Just e-mail me off the list.

On Tue, Jul 21, 2015, 11:33 AM Jason Kridner 
wrote:

> I'm still back-and-forth on going to DEFCON. Any additional bait to
> convince me I should go?
>
> On Sun, Jul 5, 2015 at 3:05 PM, Philip Polstra  wrote:
> > As an FYI, if any of your are going to DEFCON, I will be giving two
> talks,
> > one related to the BBB, and one to the CatchWire (formerly LUNA) that is
> > essentially a customized BBB with two gigabit Ethernet ports.
> >
> > The BBB talk is this one
> > https://www.defcon.org/html/defcon-23/dc-23-speakers.html#Polstra and
> the
> > CatchWire talk is
> > https://www.defcon.org/html/defcon-23/dc-23-speakers.html#Polstra2.
> >
> > We will also be giving away 2 CatchWires each with a copy of my Hacking
> and
> > Penetration Testing with Low Power Devices and my (new) Linux Forensics
> > books.  You can register to win these at the PentesterAcademy booth.
> >
> > I'm also hoping to release version 2.1 of The Deck Linux at DEFCON for
> the
> > BBB and a custom edition of Deck Linux for the CatchWire.
> >
> > --
> > 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] SD Card via USB

2015-07-12 Thread Philip Polstra
The first time you plug in the thumb drive it should be /dev/sda.  If you
want the SD card its /dev/mmcXXblk where XX is either 00 or 01 depending on
what you booted from.  The part of my script that unmounts drives is
unneeded for SD cards, but you still need to run modprobe -r g_multi to
unload the default device which doesn't export the SD card.  Then if you
run modprobe g_multi file=/dev/mmcXXblkXX it should show up on the PC.

On Sun, Jul 12, 2015, 11:55 AM Jim Lill  wrote:

>
> Tried the suggestion below, no working. Perhaps path is /dev/etcetera  not
> mounted drive?
>
>
> On Friday, July 10, 2015 at 12:45:10 PM UTC-4, William Hermans wrote:
>
>> wow Phil, way to over complicate g_multi heh.
>>
>> nano /etc/modules -> add 'g_multi file=/path/to/sdcard'
>>
>> No quotes.
>>
>> The above is persistent, and by its self requires a system restart in
>> order to become 'active' However you can also use modprobe to load the
>> module without a restart. Using the exact same parameters. Like this:
>>
>> $ sudo modprobe g_multi file=/path/to/sdcard
>>
>> So for the inexperienced. g_multi will load all three USB gadget drivers.
>> Equivalents to g_mass_storage, g_ether, and g_serial. In order to use the
>> other gadgets, they must be configured. Also, for what it is worth, only
>> one gadget driver can be loaded / used at a time. Hence the need for
>> g_multi.
>>
>> On Fri, Jul 10, 2015 at 6:44 AM, Philip Polstra 
>> wrote:
>>
> You want to use the USB gadget to export the SD Card filesystem.  This is
>>> similar to something I'm doing for an upcoming DEFCON talk.  Here is the
>>> script for that talk:
>>>
>>> #!/bin/bash
>>> # stop the GETTY service if needed
>>> if which 'systemctl' ; then
>>>   systemctl stop serial-getty@ttyGS0.service >/dev/null
>>> fi
>>> # unload current composite gadget
>>> modprobe -r g_multi
>>> # these variables are used to export all partitions
>>> fstr=""
>>> rostr=""
>>> # unmount the USB drive
>>> for d in $(ls /dev/sd*) ; do
>>>   if  echo "$d" | egrep '[1-9]$' >/dev/null ; then
>>> umount $d
>>> fstr+=",$d"
>>> rostr+=",1"
>>>   fi
>>> done
>>> fstr=${fstr:1} # strip leading comma
>>> rostr=${rostr:1} # strip leading comma
>>> echo "$fstr" >/tmp/usbexports # save for later r/w export
>>>
>>> # now export it
>>> vend=$(( 0x1337 )) # pick your favorite vid/pid
>>> prod=$(( 0x1337 ))
>>> echo "$vend" >/tmp/usbvend # save vid/pid for r/w export
>>> echo "$prod" >/tmp/usbprod
>>> modprobe g_multi file=$fstr cdrom=0 stall=0 ro=$rostr \
>>>   removable=1 nofua=1 idVendor=$vend idProduct=$prod
>>>
>> On Fri, Jul 10, 2015 at 9:26 AM  wrote:
>>>
>> I have a new BBB with Debian. I want the SD Card to appear on the USB
>>>> port (to Host) rather than the internal memory. I find references to
>>>> uDev.txt and modifying other files related to boot but it seems like it;s
>>>> more for the pre Debain stuff.  I have the card formatted and when I ssh
>>>> in, I can see it mounted in /media so I am that far. I put a iDev.txt on
>>>> that card. What else do I change?
>>>>
>>>> Thanks
>>>>
>>>> -Jim
>>>>
>>>> --
>>>> 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...@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] SD Card via USB

2015-07-10 Thread Philip Polstra
Sorry, I just pasted in my script that does way more so you could see the
syntax for creating mass storage device.  Shows how to keep other devices
from going away.  Part of my BBB based writeblocker for defcon.

On Fri, Jul 10, 2015, 12:45 PM William Hermans  wrote:

> wow Phil, way to over complicate g_multi heh.
>
> nano /etc/modules -> add 'g_multi file=/path/to/sdcard'
>
> No quotes.
>
> The above is persistent, and by its self requires a system restart in
> order to become 'active' However you can also use modprobe to load the
> module without a restart. Using the exact same parameters. Like this:
>
> $ sudo modprobe g_multi file=/path/to/sdcard
>
> So for the inexperienced. g_multi will load all three USB gadget drivers.
> Equivalents to g_mass_storage, g_ether, and g_serial. In order to use the
> other gadgets, they must be configured. Also, for what it is worth, only
> one gadget driver can be loaded / used at a time. Hence the need for
> g_multi.
>
>
> On Fri, Jul 10, 2015 at 6:44 AM, Philip Polstra 
> wrote:
>
>> You want to use the USB gadget to export the SD Card filesystem.  This is
>> similar to something I'm doing for an upcoming DEFCON talk.  Here is the
>> script for that talk:
>>
>> #!/bin/bash
>> # stop the GETTY service if needed
>> if which 'systemctl' ; then
>>   systemctl stop serial-getty@ttyGS0.service >/dev/null
>> fi
>> # unload current composite gadget
>> modprobe -r g_multi
>> # these variables are used to export all partitions
>> fstr=""
>> rostr=""
>> # unmount the USB drive
>> for d in $(ls /dev/sd*) ; do
>>   if  echo "$d" | egrep '[1-9]$' >/dev/null ; then
>> umount $d
>> fstr+=",$d"
>> rostr+=",1"
>>   fi
>> done
>> fstr=${fstr:1} # strip leading comma
>> rostr=${rostr:1} # strip leading comma
>> echo "$fstr" >/tmp/usbexports # save for later r/w export
>>
>> # now export it
>> vend=$(( 0x1337 )) # pick your favorite vid/pid
>> prod=$(( 0x1337 ))
>> echo "$vend" >/tmp/usbvend # save vid/pid for r/w export
>> echo "$prod" >/tmp/usbprod
>> modprobe g_multi file=$fstr cdrom=0 stall=0 ro=$rostr \
>>   removable=1 nofua=1 idVendor=$vend idProduct=$prod
>>
>>
>> On Fri, Jul 10, 2015 at 9:26 AM  wrote:
>>
>>> I have a new BBB with Debian. I want the SD Card to appear on the USB
>>> port (to Host) rather than the internal memory. I find references to
>>> uDev.txt and modifying other files related to boot but it seems like it;s
>>> more for the pre Debain stuff.  I have the card formatted and when I ssh
>>> in, I can see it mounted in /media so I am that far. I put a iDev.txt on
>>> that card. What else do I change?
>>>
>>> Thanks
>>>
>>> -Jim
>>>
>>> --
>>> 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.
>

-- 
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] SD Card via USB

2015-07-10 Thread Philip Polstra
You want to use the USB gadget to export the SD Card filesystem.  This is
similar to something I'm doing for an upcoming DEFCON talk.  Here is the
script for that talk:

#!/bin/bash
# stop the GETTY service if needed
if which 'systemctl' ; then
  systemctl stop serial-getty@ttyGS0.service >/dev/null
fi
# unload current composite gadget
modprobe -r g_multi
# these variables are used to export all partitions
fstr=""
rostr=""
# unmount the USB drive
for d in $(ls /dev/sd*) ; do
  if  echo "$d" | egrep '[1-9]$' >/dev/null ; then
umount $d
fstr+=",$d"
rostr+=",1"
  fi
done
fstr=${fstr:1} # strip leading comma
rostr=${rostr:1} # strip leading comma
echo "$fstr" >/tmp/usbexports # save for later r/w export

# now export it
vend=$(( 0x1337 )) # pick your favorite vid/pid
prod=$(( 0x1337 ))
echo "$vend" >/tmp/usbvend # save vid/pid for r/w export
echo "$prod" >/tmp/usbprod
modprobe g_multi file=$fstr cdrom=0 stall=0 ro=$rostr \
  removable=1 nofua=1 idVendor=$vend idProduct=$prod


On Fri, Jul 10, 2015 at 9:26 AM  wrote:

> I have a new BBB with Debian. I want the SD Card to appear on the USB port
> (to Host) rather than the internal memory. I find references to uDev.txt
> and modifying other files related to boot but it seems like it;s more for
> the pre Debain stuff.  I have the card formatted and when I ssh in, I can
> see it mounted in /media so I am that far. I put a iDev.txt on that card.
> What else do I change?
>
> Thanks
>
> -Jim
>
> --
> 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] LCD cape with 4.1 kernel

2015-07-06 Thread Philip Polstra
Had to re-install the kernel and now it is recognized as it should be.
Many thanks!  Now on to the next challenge... fixing the windowing system
yet again.

On Mon, Jul 6, 2015 at 1:21 PM Robert Nelson 
wrote:

> On Mon, Jul 6, 2015 at 11:31 AM, Robert Nelson 
> wrote:
> > On Mon, Jul 6, 2015 at 11:16 AM, Robert Nelson 
> wrote:
> >> On Mon, Jul 6, 2015 at 10:36 AM, Robert Nelson 
> wrote:
> >>> On Mon, Jul 6, 2015 at 9:14 AM, Philip Polstra 
> wrote:
> >>>> ubuntu@arm:~$ dtc --version
> >>>> Version: DTC 1.4.1-g2a37d2d8
> >>>> ubuntu@arm:~$ uname -r
> >>>> 4.1.0-rc8-bone9
> >>>> ubuntu@arm:~$ dmesg|grep bone
> >>>> [0.00] Linux version 4.1.0-rc8-bone9
> (root@a4-imx6q-wandboard-2gb)
> >>>> (gcc version 4.8.2 (Ubuntu/Linaro 4.8.2-19ubuntu1) ) #1 Wed Jun 17
> 02:36:41
> >>>> UTC 2015
> >>>> [3.111917] usb usb1: Manufacturer: Linux 4.1.0-rc8-bone9 musb-hcd
> >>>> [3.270249] bone_capemgr bone_capemgr: Baseboard:
> >>>> 'A335BNLT,00C0,3214BBBK6007'
> >>>> [3.270270] bone_capemgr bone_capemgr:
> >>>> compatible-baseboard=ti,beaglebone-black - #slots=4
> >>>> [3.322347] bone_capemgr bone_capemgr: slot #0: No cape found
> >>>> [3.382332] bone_capemgr bone_capemgr: slot #1: No cape found
> >>>> [3.442331] bone_capemgr bone_capemgr: slot #2: No cape found
> >>>> [3.472330] bone_capemgr bone_capemgr: slot #3: '4D 4.3 LCD CAPE-
> >>>> 4DCAPE-43T ,00A1,4D SYSTEMS  ,BB-BONE-LCD4-01'
> >>>> [3.472514] bone_capemgr bone_capemgr: initialized OK.
> >>>> [4.482478] bone_capemgr bone_capemgr: loader: failed to load
> slot-3
> >>>> BB-BONE-LCD4-01:00A1 (prio 0)
> >>>> ubuntu@arm:~$
> >>>
> >>> Thanks Philip,
> >>>
> >>> Pretty much replicated on ubuntu trusty...
> >>>
> >>> I'm going to quickly verify debian jessie isn't broken.  But ubuntu
> >>> might be doing something funny with the location of *.dtbo, i've been
> >>> shoving them under /lib/firmware (and copying them to the
> >>> initrd.img)..
> >>
> >> Fun... regressions across the board.. looks like a dtc version issue..
> >
> > Okay, back to testing trusty... on debian since i don't have the cape
> > plugged, i have to override, and i forgot the ":00A1" part..
>
> Nope, works perfect:
>
> ubuntu@arm:~$ dmesg | grep bone
> [0.00] Linux version 4.1.1-bone9 (root@a5-imx6q-wandboard-2gb)
> (gcc version 4.8.4 (Ubuntu/Linaro 4.8.4-2ubuntu1~14.04) ) #1 Tue Jun
> 30 17:32:28 UTC 2015
> [0.00] Kernel command line: console=tty0
> console=ttyO0,115200n8 bone_capemgr.enable_partno=BB-BONE-LCD4-01:00A1
> root=/dev/mmcblk0p1 rootfstype=ext4 rootwait fixrtc coherent_pool=1M
> quiet
> [3.036329] usb usb1: Manufacturer: Linux 4.1.1-bone9 musb-hcd
> [3.166983] bone_capemgr bone_capemgr: Baseboard:
> 'A335BNLT,000C,2115BBBK0347'
> [3.167006] bone_capemgr bone_capemgr:
> compatible-baseboard=ti,beaglebone-black - #slots=4
> [3.07] bone_capemgr bone_capemgr: slot #0: No cape found
> [3.282234] bone_capemgr bone_capemgr: slot #1: No cape found
> [3.342193] bone_capemgr bone_capemgr: slot #2: No cape found
> [3.402194] bone_capemgr bone_capemgr: slot #3: No cape found
> [3.408242] bone_capemgr bone_capemgr: enabled_partno PARTNO
> 'BB-BONE-LCD4-01' VER '00A1' PR '0'
> [3.408252] bone_capemgr bone_capemgr: slot #4: override
> [3.408264] bone_capemgr bone_capemgr: Using override eeprom data at
> slot 4
> [3.408278] bone_capemgr bone_capemgr: slot #4: 'Override Board
> Name,00A1,Override Manuf,BB-BONE-LCD4-01'
> [3.408506] bone_capemgr bone_capemgr: initialized OK.
> [4.436414] bone_capemgr bone_capemgr: slot #4: dtbo
> 'BB-BONE-LCD4-01-00A1.dtbo' loaded; overlay id #0
> ubuntu@arm:~$ cat /boot/uEnv.txt | grep dtb
> dtb=am335x-boneblack-overlay.dtb
>
> I'm going to guess, you didn't set dtb=
>
> Like shown under "BBB compatibility issues:"
>
> Use blank overlay (HDMI & eMMC disabled) (/boot/uEnv.txt):
> dtb=am335x-boneblack-overlay.dtb
>
> BB-BONE-LCD4-01-00A1.dts
> Disable: HDMI
>
> 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] LCD cape with 4.1 kernel

2015-07-06 Thread Philip Polstra
ubuntu@arm:~$ dtc --version
Version: DTC 1.4.1-g2a37d2d8
ubuntu@arm:~$ uname -r
4.1.0-rc8-bone9
ubuntu@arm:~$ dmesg|grep bone
[0.00] Linux version 4.1.0-rc8-bone9 (root@a4-imx6q-wandboard-2gb)
(gcc version 4.8.2 (Ubuntu/Linaro 4.8.2-19ubuntu1) ) #1 Wed Jun 17 02:36:41
UTC 2015
[3.111917] usb usb1: Manufacturer: Linux 4.1.0-rc8-bone9 musb-hcd
[3.270249] bone_capemgr bone_capemgr: Baseboard:
'A335BNLT,00C0,3214BBBK6007'
[3.270270] bone_capemgr bone_capemgr:
compatible-baseboard=ti,beaglebone-black - #slots=4
[3.322347] bone_capemgr bone_capemgr: slot #0: No cape found
[3.382332] bone_capemgr bone_capemgr: slot #1: No cape found
[3.442331] bone_capemgr bone_capemgr: slot #2: No cape found
[3.472330] bone_capemgr bone_capemgr: slot #3: '4D 4.3 LCD CAPE-
4DCAPE-43T ,00A1,4D SYSTEMS  ,BB-BONE-LCD4-01'
[3.472514] bone_capemgr bone_capemgr: initialized OK.
[4.482478] bone_capemgr bone_capemgr: loader: failed to load slot-3
BB-BONE-LCD4-01:00A1 (prio 0)
ubuntu@arm:~$


On Sun, Jul 5, 2015 at 8:29 PM Robert Nelson 
wrote:

> On Sun, Jul 5, 2015 at 7:17 PM, Philip Polstra  wrote:
> > Has anyone gotten any LCD capes (4.3 or 7") to work with Ubuntu and the
> 4.1
> > kernel?  Cape Manager seems to error out when loading firmware.
> Everything
> > also seems to be mostly blank (no pins used, no pinmux values, etc.).
>
> https://github.com/beagleboard/bb.org-overlays
>
> dtc --version
>
> uname -r
>
> dmesg | grep bone
>
> 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] LCD cape with 4.1 kernel

2015-07-05 Thread Philip Polstra
Has anyone gotten any LCD capes (4.3 or 7") to work with Ubuntu and the 4.1
kernel?  Cape Manager seems to error out when loading firmware.  Everything
also seems to be mostly blank (no pins used, no pinmux values, etc.).

-- 
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] DEFCON BBB talks

2015-07-05 Thread Philip Polstra
As an FYI, if any of your are going to DEFCON, I will be giving two talks,
one related to the BBB, and one to the CatchWire (formerly LUNA) that is
essentially a customized BBB with two gigabit Ethernet ports.

The BBB talk is this one
https://www.defcon.org/html/defcon-23/dc-23-speakers.html#Polstra and the
CatchWire talk is
https://www.defcon.org/html/defcon-23/dc-23-speakers.html#Polstra2.

We will also be giving away 2 CatchWires each with a copy of my Hacking and
Penetration Testing with Low Power Devices and my (new) Linux Forensics
books.  You can register to win these at the PentesterAcademy booth.

I'm also hoping to release version 2.1 of The Deck Linux at DEFCON for the
BBB and a custom edition of Deck Linux for the CatchWire.

-- 
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: Up, up and away and x15

2015-05-31 Thread Philip Polstra
As someone who has actually shipped small items like PCBs for my XBee cape
and XBee cape kits internationally, I can tell you that this is not really
steep at all.  For example, sending 3 PCBs to the UK in a regular envelope
cost me $11.  Priority mail is $22 and Express Priority mail is close to
$50.

On Sun, May 31, 2015 at 10:58 AM Elena ``of Valhalla'' <
elena.valha...@gmail.com> wrote:

> On 2015-05-30 at 20:57:25 -0400, Mike wrote:
> > >Are you saying that they have excessive shipping/handling charges?
> > >I didn't look. What are they?
> > 5.00 USD if you choose the 9.00 board, that ships in 2/16.  Hardly
> > gouging...  I believe the complaints have been about international
> shipping.
>
> Yes, international shipping is 20 USD: not unheard of, but a bit on the
> high side, expecially for a small / lightweight board.
>
> --
> Elena ``of Valhalla''
>
> --
> 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] Xbee cape

2015-05-29 Thread Philip Polstra
I actually have these available at http://philpolstra.com.  I have both the
bare boards and the complete kits available.  They can also be bundled with
my book on Low Power Hacking with the BBB. :-)

On Fri, May 29, 2015 at 2:42 PM William Pretty Security <
bill.pre...@xplornet.com> wrote:

> Hey
>
>
>
> Actually Sparkfun has everything you need to make your own J
>
> They have a couple of Zigbee adapter boards and a 3V USB-Serial adapter.
>
>
>
> All you need is a proto-cape and you are in business!
>
>
>
> Bill
>
>
>
> *From:* beagleboard@googlegroups.com [mailto:beagleboard@googlegroups.com]
> *On Behalf Of *Thiago Borba
> *Sent:* Friday, May 29, 2015 11:02 AM
> *To:* beagleboard@googlegroups.com
> *Subject:* [beagleboard] Xbee cape
>
>
>
> Hey, hello!
>
> Are someone working with the bbb xbee cape?
> Someone knows a good starting point?
>
>
> Thanks!!
>
> --
> 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.
> --
>
> No virus found in this message.
> Checked by AVG - www.avg.com
> Version: 2015.0.5941 / Virus Database: 4347/9832 - Release Date: 05/21/15
> Internal Virus Database is out of date.
>
> --
> 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] Future of BeagleBone (Black)?

2015-05-19 Thread Philip
On Tuesday, May 19, 2015 at 10:14:20 AM UTC-4, Gerald wrote:
>
> If I knew that, I would have mentioned that. I would say maybe late 
> September. We hope to have a few beta boards in about 6 weeks. Jason is 
> handling who gets those boards. Right now, we are going back into layout to 
> fix yet another TI "feature".
>
>
Will the cape interface stay the same?

Philip

 

> Gerald
>
>
> On Tue, May 19, 2015 at 9:06 AM, Robert P. J. Day  > wrote:
>
>> On Tue, 19 May 2015, Gerald Coley wrote:
>>
>> > BeagleBone Black at this point has no processor future due to TI's
>> > dead end road map. We are working on the BeagleBoard-X15 which is
>> > the next product to come out. Due to the form factor of the BBB, it
>> > cannot support the AM5728 processor. The BBB is just too small, but
>> > it does fit in the Altoids box.
>>
>>   at what point will units be available? i wouldn't mind starting to
>> move over my embedded linux and device driver courseware to the X15,
>> at least in preparation for when the final units come out.
>>
>> rday
>>
>> --
>>
>> 
>> Robert P. J. Day Ottawa, Ontario, CANADA
>> http://crashcourse.ca
>>
>> Twitter:   http://twitter.com/rpjday
>> LinkedIn:   http://ca.linkedin.com/in/rpjday
>> 
>>
>
>
>
> -- 
> Gerald
>  
> ger...@beagleboard.org 
> http://beagleboard.org/
> http://circuitco.com/support/
>  

-- 
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] much value in BB-xM anymore?

2015-04-06 Thread Philip Polstra
Once the X15 is out I plan on building a "laptop" that has an X15, two
BB-xMs, and an unknown number of BBW and BBB boards connected together in a
Beauwolf cluster with a big touchscreen and multiple wireless adapters.  It
will be the replacement for my current Buzz Lightyear (Hack you to infinity
and beyond) lunchbox with a BB-xM and 7" touchscreen.

On Mon, Apr 6, 2015 at 2:25 PM, Gerald Coley  wrote:

> We are still making and shipping the BeagleBoard-XM.
>
> Gerald
>
>
> On Sun, Apr 5, 2015 at 3:19 AM, Robert P. J. Day 
> wrote:
>
>> On Sat, 4 Apr 2015, Jason Kridner wrote:
>>
>> > I think the advantages you find are the EHCI USB host controller
>> > with hub and DSP. The DSP has some interesting binary loads,
>> > including some acceleration for depth-finding cameras. There's also
>> > a good amount of documentation for use with tools like Matlab, but I
>> > believe that's probably a bit beneath your personal experience
>> > level.
>>
>>   that sounds interesting enough that i might as well just hang onto
>> it ... not like it takes up a lot of space. now as to these *other* 17
>> eval boards ...
>>
>> rday
>>
>> --
>>
>> 
>> Robert P. J. Day Ottawa, Ontario, CANADA
>> http://crashcourse.ca
>>
>> Twitter:   http://twitter.com/rpjday
>> LinkedIn:   http://ca.linkedin.com/in/rpjday
>> 
>>
>
>
>
> --
> Gerald
>
> ger...@beagleboard.org
> http://beagleboard.org/
> http://circuitco.com/support/
>
> --
> 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: The Deck 2.0 (Linux for penetration testers) for BBB now available

2015-03-19 Thread Philip Polstra
The GUI should already be installed.  If you hook the BBB up to a TV or
HDMI monitor you should be presented with a GUI login screen.

On Wed, Mar 18, 2015 at 8:40 PM,  wrote:

> Thanks for the prompt reply. Got everything up and running. Appreciate all
> the work you've put into this.
>
> I haven't been able to run apt-get update or run any .sh files to enable
> LXDE. Could this be an issue with Canonical servers?
>
> Is there an alternative method to getting a GUI installed?
>
> Regards
>
> On Saturday, March 14, 2015 at 9:41:21 PM UTC-4, Philip Polstra wrote:
>>
>> You should be able to put the files together and extract them all at once
>> using the command "cat TheDeck*.tar.gz-part-0* | tar xzv" from any linux
>> machine. If this is problematic you can try to do it in two steps like this:
>> cat TheDeck*.tar.gz-part-0* > TheDeck*.tar.gz
>> tar xzvf TheDeck*.tar.gz
>>
>> Alternatively, you can download the entire thing from my website at the
>> university http://facstaff.bloomu.edu/ppolstra.
>>
>> On Sat, Mar 14, 2015 at 2:54 PM,  wrote:
>>
>>> Hi Dr. Phil,
>>>
>>> I'm eager to get The Deck up and running with my beaglebone. I've
>>> downloaded the files from sourceforge, however, I can't figure out how to
>>> combine them like it says in the readme file. Is there a step that I'm
>>> missing? Please advise.
>>>
>>> Thanks.
>>>
>>> On Thursday, August 21, 2014 at 3:57:46 PM UTC-4, Philip Polstra wrote:
>>>>
>>>> The Deck 2.0, a special BBB Linux distribution for security penetration
>>>> testers, is now available on SourceForge at http://sourceforge.net/proj
>>>> ects/thedeck/files/Latest/.  This new version is chuck full of hacking
>>>> goodness in over 4k packages and 12GB+.  If you don't wish to download 6GB
>>>> of files from SourceForge you can also buy preloaded microSD cards at
>>>> https://specialcomp.com/beagleboard/thedeck.htm.
>>>>
>>>> More info: http://store.elsevier.com/Hacking-and-Penetration-Test
>>>> ing-with-Low-Power-Devices/Philip-Polstra/isbn-9780128007518/
>>>>
>>>  --
>>> 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] Re: The Deck 2.0 (Linux for penetration testers) for BBB now available

2015-03-14 Thread Philip Polstra
You should be able to put the files together and extract them all at once
using the command "cat TheDeck*.tar.gz-part-0* | tar xzv" from any linux
machine. If this is problematic you can try to do it in two steps like this:
cat TheDeck*.tar.gz-part-0* > TheDeck*.tar.gz
tar xzvf TheDeck*.tar.gz

Alternatively, you can download the entire thing from my website at the
university http://facstaff.bloomu.edu/ppolstra.

On Sat, Mar 14, 2015 at 2:54 PM,  wrote:

> Hi Dr. Phil,
>
> I'm eager to get The Deck up and running with my beaglebone. I've
> downloaded the files from sourceforge, however, I can't figure out how to
> combine them like it says in the readme file. Is there a step that I'm
> missing? Please advise.
>
> Thanks.
>
> On Thursday, August 21, 2014 at 3:57:46 PM UTC-4, Philip Polstra wrote:
>>
>> The Deck 2.0, a special BBB Linux distribution for security penetration
>> testers, is now available on SourceForge at http://sourceforge.net/
>> projects/thedeck/files/Latest/.  This new version is chuck full of
>> hacking goodness in over 4k packages and 12GB+.  If you don't wish to
>> download 6GB of files from SourceForge you can also buy preloaded microSD
>> cards at https://specialcomp.com/beagleboard/thedeck.htm.
>>
>> More info: http://store.elsevier.com/Hacking-and-Penetration-
>> Testing-with-Low-Power-Devices/Philip-Polstra/isbn-9780128007518/
>>
>  --
> 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] Libpruio & capemgr

2015-03-08 Thread Philip Theis
Thanks; just thinking ahead.
Phil

On Sunday, March 8, 2015 at 3:45:12 PM UTC-4, RobertCNelson wrote:
>
> On Sun, Mar 8, 2015 at 2:29 PM, Philip Theis  > wrote: 
> > What are libpruio plans now that capemgr is leaving future releases? 
> > thanks, 
>
> 3.8 will continue to be built until we have something that replaces it 
> 100%.. 
>
> 3.14 is just for users who need something newer then 3.8.. 
>
> 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/d/optout.


[beagleboard] Libpruio & capemgr

2015-03-08 Thread Philip Theis
What are libpruio plans now that capemgr is leaving future releases?
thanks,
Phil 

-- 
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] BeagleBone Cookbook - O'Reilly Media

2015-02-11 Thread Philip Polstra
O'Reilly is having half off prerelease books this week with code WKERES for
anyone interested in Jason's book.
On Feb 10, 2015 9:20 PM, "Jason Kridner" 
wrote:

> I'm naturally interested in what anyone has to say about it. I'd like
> to update the image link in the final book to point to something up on
> http://beagleboard.org/latest-images, but I need to get that updated
> first. That's what I'm spending time thinking about lately.
>
> I've been updating http://builds.beagleboard.org to utilize my
> pre-release BeagleBoard-X15 to start building flash images for
> BeagleBone Black.
>
> On Tue, Feb 10, 2015 at 6:30 PM, Philip Polstra 
> wrote:
> > Here is a link to the book
> >
> http://www.amazon.com/gp/aw/d/1783988908/ref=mp_s_a_1_3?qid=1423610746&sr=8-3&pi=AC_SY200_QL40&keywords=beaglebone+black+robotics&dpPl=1&dpID=5117yv1ecAL&ref=plSrch
> >
> > BTW, if the ditch is too big to cross for Blackhat, you could always buy
> my
> > book http://philpolstra.com/Hacking-Book/ ;-)
> >
> > On Feb 10, 2015 6:14 PM, "Peter Lawler"  wrote:
> >>
> >> On 11/02/15 09:47, Philip Polstra wrote:
> >> > I'm pretty sure Jason likes it! ;-)
> >> Hah. I only just now noticed his email address. Bodes well :)
> >>
> >> > Speaking of BBB books, there is an advanced robotics book that just
> came
> >> > out that's pretty good.
> >> What's the title? I seem to recall seeing a couple at Safari Online that
> >> have come out in the past few months.
> >>
> >> > As an FYI, I'll be doing a training class at Blackhat USA this summer
> on
> >> > using the BBB for remote hacking.
> >> Sounds like fun. Pity the ditch from AU to US is so wide... :(
> >>
> >> Thanks for the reply,
> >>
> >> Pete.
> >>
> >> --
> >> 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.
>

-- 
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] No IP Address on new image (Rev C)

2015-02-10 Thread Philip Theis
So I take a new Rev C board.  Works fine with the April Deb image out of 
the box (bone47).  Get IP address fine.
Went through the process of installing the May Deb image (bone50)
Start up the new image and it does not obtain an IP address; all conditions 
are the same.
Is it the image?
Phil 

-- 
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] BeagleBone Cookbook - O'Reilly Media

2015-02-10 Thread Philip Polstra
Here is a link to the book
http://www.amazon.com/gp/aw/d/1783988908/ref=mp_s_a_1_3?qid=1423610746&sr=8-3&pi=AC_SY200_QL40&keywords=beaglebone+black+robotics&dpPl=1&dpID=5117yv1ecAL&ref=plSrch

BTW, if the ditch is too big to cross for Blackhat, you could always buy my
book http://philpolstra.com/Hacking-Book/ ;-)
On Feb 10, 2015 6:14 PM, "Peter Lawler"  wrote:

> On 11/02/15 09:47, Philip Polstra wrote:
> > I'm pretty sure Jason likes it! ;-)
> Hah. I only just now noticed his email address. Bodes well :)
>
> > Speaking of BBB books, there is an advanced robotics book that just came
> > out that's pretty good.
> What's the title? I seem to recall seeing a couple at Safari Online that
> have come out in the past few months.
>
> > As an FYI, I'll be doing a training class at Blackhat USA this summer on
> > using the BBB for remote hacking.
> Sounds like fun. Pity the ditch from AU to US is so wide... :(
>
> Thanks for the reply,
>
> Pete.
>
> --
> 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] BeagleBone Cookbook - O'Reilly Media

2015-02-10 Thread Philip Polstra
I'm pretty sure Jason likes it! ;-) haven't seen it yet.

Speaking of BBB books, there is an advanced robotics book that just came
out that's pretty good.

As an FYI, I'll be doing a training class at Blackhat USA this summer on
using the BBB for remote hacking.
On Feb 10, 2015 5:18 PM, "Peter Lawler"  wrote:

> Just wondering if anyone's picked up a copy of the Early Release of this
> book yet and if so what's the opinion?
>
> http://shop.oreilly.com/product/0636920033899.do
>
> --
> 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] BeagleBone Cape EEPROM format update

2015-02-09 Thread Philip Polstra
I remember populating this info for my XBee Cape, only to find that it is
not used at all.  I think it is still a good idea to have the info in there
in case it is really used in the future.  In theory it should be possible
to have the cape configured without the need for a DTB file for each cape.

On Mon, Feb 9, 2015 at 6:45 PM, Joshua Datko  wrote:

> The SRM defines a very specific format for BeagleBone Black cape
> EEPROMs[1]. AFAIK, the only fields that are actually required are the Board
> Name and Version, which is used on boot to load the appropriate DTS file.
> If this is the case can we change the other fields to optional?
>
> There's a lot of great meta information in there, but if it's not required
> can the documentation be changed to make it explicitly not required?
>
> Josh
>
> [1] Table 17, section 8.2.4, page 101 of
> https://github.com/CircuitCo/BeagleBone-Black/blob/master/BBB_SRM.pdf?raw=true
>
> --
> 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: GPIO_40 vs PWM

2015-02-05 Thread Philip Theis
I just finished his YouTube on fdt.
This is such a cool and intricate device.
Phil
On Feb 5, 2015 4:31 PM, "Graham"  wrote:

> Phil:
> You are about to meet the "Device Tree" and the "Pin Mux."
> You can read up on those topics in the Molloy book.
> Download his header tables from the Book's git hub site.
> Contact me off line if you need further help.
> --- Graham
>
> ==
>
> --
> 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/1AxjlfQamjA/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.


[beagleboard] GPIO_40 vs PWM

2015-02-04 Thread Philip Theis
I attempting to use GPIO_40 on P9_14
It is not responding as other GPIO pins are.
My assumption is that since it is dual purpose with PWM1A that the PWM is 
keeping it from being used as a GPIO digital output pin.
How can I stop the PWM process that is keeping GPIO_40 from working?
thanks,
Phil

-- 
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] Change the VID/PID for the client USB port

2015-01-23 Thread Philip Polstra
The VID/PID doesn't determine what driver is loaded.  That is determined by
the device class/subclass/protocol which is either provided in the device
descriptor or (more commonly) interface descriptor.

On Thu, Jan 22, 2015 at 11:08 AM,  wrote:

> We would like to use the BBB as part of a prototype for a product
> re-design.  We will need the BBB to be a client device.  I have not yet
> been able to determine how I can change the VID/PID on the USB client port
> so that a different USB driver will get loaded into the host.  Can anyone
> tell me where this information is stored and how I might be able to change
> it?  Any help on this would be greatly appreciated.  Thanks.
>
> --
> 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] microSD card format & Image installing issue

2015-01-18 Thread Philip Polstra
Bill is correct and I second the advice to only use class 10 or faster
cards.  I have tried to run a class 4 card and it was painful.
On Jan 18, 2015 9:35 AM, "William Pretty Security" 
wrote:

> Hi Raj;
>
>
>
> While others may disagree, I use ONLY class 10 uSD cards.
>
> However your real problem is that you are trying to use a Windows machine
> to read a Linux
>
> for matted memory device!  Only the boot partition is FAT formatted.
>
>
>
> Just put the uSD card in your BBB and it should work fine …..
>
>
>
> Bill
>
>
>
> "No one could make a greater mistake than he who did nothing because he
> could do only a little."
>
> "All that is necessary for the triumph of evil is that good men do
> nothing" Edmond Burke *(1729 - 1797)*
>
>
> http://www.packtpub.com/building-a-home-security-system-with-beaglebone/book
>
> http://ca.linkedin.com/pub/bill-pretty/2b/b07/602
>
>
>
>
>
> *From:* beagleboard@googlegroups.com [mailto:beagleboard@googlegroups.com]
> *On Behalf Of *Raj_RB
> *Sent:* Sunday, January 18, 2015 5:53 AM
> *To:* beagleboard@googlegroups.com
> *Subject:* [beagleboard] microSD card format & Image installing issue
>
>
>
> Hi guys,
>
>
>
> I am having very hard time with my microSD card (4GB, Transcend, Class 2)
> for the past several days. I am using Windows 7 and I formatted this card
> using FAT and also FAT32. Then using Win32 disk image installer, I
> installed Debian 7.7 eMMC flasher for BBB (Jan 6, 2015 release) in the card.
>
>
>
> After successful writing, I safely removed the card and inserted it again
> in the PC (using card reader) to check the files, immediately an pop up
> flashed asking to format
>
> the card. Also, I could not see the card size in 'My computer'.I have done
> this process earlier and it worked well (display of files) but I dont know
> why it doesnot work well.
>
>
>
> --
> 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] Relay Alternative for a Low powered module on/off

2014-12-31 Thread Philip Polstra
If you are using the regular and pro 2.4GHz XBee you don't need anything
close to 1A.  The hardware pin sleep is so low power that turning it off
makes little sense.  Just my two cents from the guy who builds low power
hacking drones.
On Dec 31, 2014 4:36 AM, "Kevin D'Souza"  wrote:

> I have an application that needs a XBee and another module to be turned on
> and off digitally via a BealgeboneBlack.
>
> The Setup is 2 XBee's and an application board is connected to the 
> BealgeboneBlack's
> UART and a GPIO for the power state . When the System is Powered ON I
> need 1 Xbee and the BealgeboneBlack to come on and do its routines. After
> the system gets a specific signal from the Xbee (wirelessly from a
> baseStation) the board has to turn on the other XBee and application board.
> And when the operation is over, the XBee and Board is to be powered back
> down.
>
> I dont want to put them in sleep or low power state, just power both those
> devices off.
>
> Was thinking of using a relay. But i cannot find a 3.3v 1A SMD Equivalent
> system. I am looking for a SMD type of footprint to go on a very compact
> board.
>
> What options do i have?
>
> The XBee needs around 1A Power and the Application board 500mA.
>
> --
> 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] Microcenter still has BBB for $40

2014-12-29 Thread Philip Polstra
Seems like they still have these on sale
http://www.microcenter.com/product/434844/Element_14_Beaglebone_Black_-_Revision_C
.

-- 
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] XBee capes

2014-12-04 Thread Philip Polstra
Jason, the beagleboard.org/project link errors out when registering a new
project.

On Thu, Dec 4, 2014 at 12:10 AM, Jason Kridner  wrote:

>
>
>
>
> On Dec 3, 2014, at 11:32 PM, Philip Polstra  wrote:
>
> As an FYI.  I have printed circuit boards and full kits for the XBee cape
> described in my book (Hacking and Penetration Testing with Low Power
> Devices) available at http://philpolstra.com/Hacking-Kits/ if anyone is
> playing with XBee and ZigBee.
>
>
> Have you also registered on http://beaglebonecapes.com and
> http://beagleboard.org/project?
>
>
> On-board programming of the radios via 3.3V FTDI cable is support.
>
> There are also updates to the MeshDeck available at
> http://facstaff.bloomu.edu/ppolstra.  The latest version has better
> support for Series 2 (ZigBee) and adds things such as the the ability to
> query a radio for its short address by entering the lower 4 bytes of the
> MAC address (top 4 bytes are always the same).
>
> --
> 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.


[beagleboard] XBee capes

2014-12-03 Thread Philip Polstra
As an FYI.  I have printed circuit boards and full kits for the XBee cape
described in my book (Hacking and Penetration Testing with Low Power
Devices) available at http://philpolstra.com/Hacking-Kits/ if anyone is
playing with XBee and ZigBee.

On-board programming of the radios via 3.3V FTDI cable is support.

There are also updates to the MeshDeck available at
http://facstaff.bloomu.edu/ppolstra.  The latest version has better support
for Series 2 (ZigBee) and adds things such as the the ability to query a
radio for its short address by entering the lower 4 bytes of the MAC
address (top 4 bytes are always the same).

-- 
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: Books or Internet resources on Embedded linux

2014-11-28 Thread Philip Polstra
If you aren't doing anything with hardware (using capes, etc.) then doing
C/C++ on the BBB is no different from any other Linux system.  There are
lots of resources for that kind of stuff.  Even if you want to talk to
external devices using serial communications (UART) or some other standard
protocol it's all the same once you have configured the pins on the BBB to
do what you want.

On Fri, Nov 28, 2014 at 11:00 AM, Rimvis Janusauskas 
wrote:

> Well it's quite sad that the book will be released only on December 31~
> 2014. The other tutorials are quite interesting and helpful, but he uses a
> lot of other stuff like capes. I don't have such resources, so it would be
> impossible to test what i learned and coded :(.
>
> 2014 m. lapkritis 28 d., penktadienis 16:20:15 UTC+2, Graham rašė:
>>
>>
>> http://derekmolloy.ie/beaglebone/
>>
>> http://derekmolloy.ie/beaglebone/setting-up-eclipse-
>> on-the-beaglebone-for-c-development/
>>
>> http://derekmolloy.ie/category/embedded-systems/beaglebone/
>>
>> --- Graham
>>
>> ==
>>
>> On Friday, November 28, 2014 6:54:49 AM UTC-6, Rimvis Janusauskas wrote:
>>>
>>>
>>> Hi, yesterday i received my BeagleBone Black and started to examine it,
>>> written some programs in C to test it, but after some time i realized that
>>> many projects in net is in bonescript or you need many other additional
>>> parts to make projects. So i would like to start to learn how to program on
>>> embedded linux systems. in particularly ARM plate-form.I would like to
>>> learn   how to do low level programming in C/C++ (device drivers,
>>> interfacing with BeagleBoard peripherals, compiling customized kernels,
>>> etc).
>>>  Could you tell me any books to learn to program c/c++ on linux for ARM?
>>>
>>  --
> 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] Loading custom capes on Debian

2014-11-24 Thread Philip Polstra
I suspect it is a problem with your dtbo file.  I believe that some of the
dtbo files that used to be installed in /lib/firmware have been essentially
compiled in to the kernel in an attempt to fix some other issues.  My dtbo
for my XBee cape is still in /lib/firmware and it works fine.  Doesn't
automatically load off EEPROM at boot, but the running "echo
XbeeFullCape0001>/sys/devices/bone_capemgr.9/slots" as root works.

On Mon, Nov 24, 2014 at 3:57 AM, Bremenpl  wrote:

>  root@beaglebone:/sys/devices/bone_capemgr.9# echo BB-BONELT_HDMIN1 >
> slots
> -bash: echo: write error: No such file or directory
>
> For some reason he doesnt see my .dtbo file in lib/firmware/ but or the
> other hand there are no other .dtbo files there. They are somewhere,
> because I can echo BB-UART1 for example, I just cant figue out where. I
> dont know where to put my .dtbo file or how to enable /lib/firmware/
> directory for .dtbo files
>
> W dniu 2014-11-24 o 09:50, Jason Lange pisze:
>
> I don't have much experience with device tree overlays so I might not be
> able to help, but what is the exact command you are using to echo it into
> the slot?
>
> On Mon, Nov 24, 2014 at 12:24 AM, Bremenpl  wrote:
>
>>  root@beaglebone:/# uname -a
>> Linux beaglebone 3.8.13-bone64 #1 SMP Thu Aug 21 21:24:58 UTC 2014 armv7l
>> GNU/Linux
>>
>> W dniu 2014-11-24 o 09:20, Jason Lange pisze:
>>
>>  What kernel are you using?  (what is the output from "uname -a"
>> ?)
>>
>> On Mon, Nov 24, 2014 at 12:11 AM, bremenpl  wrote:
>>
>>> Hello there,
>>> I am suing bbb and a Debian Console image. I am strying to locate the
>>> place where the tree overlays are located but I cant. I tried greping for
>>> "BB-UART1" for example but I cant find it. Even though I can export it to
>>> slots. I have added my custom cape to /lib/firmware/ but when I try to
>>> export it to slots it cannot find the file. In the regular image all
>>> tree-overlays are stotred in /lib/firmware/ and in my image that folder is
>>> empty. I would really aprichiate any help, this is very urgent for me and I
>>> dont have much time :(
>>>  --
>>> 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/DwM-75kDnRc/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.
>>
>>
>> --
>> Bremenpl
>>
>>   --
>> 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/DwM-75kDnRc/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.
>
>
> --
> Bremenpl
>
>  --
> 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] Maximum SD card size for BBB

2014-11-21 Thread Philip Polstra
Would SDXC work if reformatted to get rid of Microsoft's proprietary exFAT
filesystem or is the hardware limited to 32GB?  Just curious, haven't
needed anything larger than 32.
On Nov 21, 2014 7:15 AM, "William Hermans"  wrote:

> So buy a flash memory stick ? Or put a ssd in an external enclosure . . .
>
> On Thu, Nov 20, 2014 at 11:22 PM, Brian Heckathorne 
> wrote:
>
>> Thank you very much that info should be in the bbb wiki very helpful and
>> good to know. Especially that a usb device could solve the issue. I take
>> lots of pictures order of thousands and need the space but dont want to
>> goto a power hungry usb disk drive.
>> On Nov 20, 2014 10:15 PM, "Robert Nelson" 
>> wrote:
>>
>>> On Thu, Nov 20, 2014 at 10:12 PM, Brian  wrote:
>>> > Maybe the correct question is what does the BBB have?
>>> >
>>> > Because SDXC uses a different file system called exFAT and it works
>>> > differently than standard SD cards, this new format is NOT backwards
>>> > compatible with host devices that only take SD (128MB to 2GB) or host
>>> > devices that only take SDHC (4GB to 32GB). Most host devices built
>>> after
>>> > 2010 should be SDXC compatible."
>>> >
>>> > Is it an SDHC or SDXC?
>>>
>>> The "ip" block on the am335x can not handle "SDXC", you'll have to use
>>> an external usb adapter to use SDXC cards on the bbb.
>>>
>>> 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 a topic in the
>>> Google Groups "BeagleBoard" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/beagleboard/rK3y2ih1kig/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.
>

-- 
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] New version of MeshDeck (XBee remote control)

2014-11-19 Thread Philip Polstra
For any of you that are using the MeshDeck to remotely control your BBB
over an XBee link, I have just pushed out a new version 2.0.1 which is
available at
http://facstaff.bloomu.edu/ppolstra/MeshDeck/MeshDeck-2.0.1.tar.gz.  The
new version includes a device tree overlay for my XBee cape which will
likely work for others provided you are using the /dev/ttyO2 port to
connect to  your XBee.

In addition to including the overlay, I have made a slight addition to the
daemon startup file so that it will check for the existence of /dev/ttyO2
before starting the MeshDeck.  If the device doesn't exist, the overlay is
loaded.  This was needed to overcome a problem where the system correctly
reads the cape EEPROM 0.9 seconds into the boot process, but then fails to
retrieve the firmware from /lib/firmware, presumably because the root
filesystem is not yet mounted.

For anyone that is interested, I do plan on having the boards, XBee cape
kits, book bundles, low-power hacking starter kits, and ultimate starter
kits that include everything you need to get started with low-power hacking
(book, XBee cape kit, preloaded microSD, BBB, USB XBee adapter, XBee pro,
and XBee regular) available for purchase soon at http://philpolstra.com as
well as some other places.

-- 
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] rc.local not run under Ubuntu

2014-11-17 Thread Philip Polstra
I have upgraded to Ubuntu 14.04 on my BBB and suddenly the /etc/rc.local
file isn't getting run after the system completes booting.  Has anyone else
experienced this or have a suggested fix?

-- 
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] How to make an image ?

2014-11-09 Thread Philip Polstra
I use tar and the substitute my rootfs archive for Robert's and reuse his
scripts.  I don't store to emmc though, so it may be different for your
case.
On Nov 9, 2014 10:46 AM, "William Pretty Security" 
wrote:

> Hello All;
>
>
>
> I believe this questions has been asked before, but I don’t recall an
> answer.
>
> I am using the latest Debian image as a starting point and have installed
> a number of additional tool in rootfs.
>
> I am using an 8GB uSD card but the roof file system takes up less than 4GB.
>
>
>
> What I am trying to do is to create an image that is about 4GB and
> includes the boot partition plus the used portion of rootfs.
>
> I researched the “DD” command, but if I understand correctly, I would end
> up with an 8GB image.
>
> I know that I can use “tar” to create an archive of the boot/rootfs
>  partitions, but that isn’t an “image”.
>
>
>
> I suppose I could just modify one of Robert Nelson’s scripts to
> automatically format and copy a uSD card, but I am wondering
>
> If there is a better way ?
>
>
>
> Thanks;
>
>
>
> Bill
>
>
>
> "No one could make a greater mistake than he who did nothing because he
> could do only a little."
>
> "All that is necessary for the triumph of evil is that good men do
> nothing" Edmond Burke *(1729 - 1797)*
>
>
> http://www.packtpub.com/building-a-home-security-system-with-beaglebone/book
>
>
>
> --
> 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] TI PRU cape available now for $39

2014-11-06 Thread Philip Polstra
Microcenter BBB deal also available online if you aren't close to a store.
I bought 5 for $9.95 shipping.  Only bs was tax including on the shipping!
On Nov 6, 2014 11:24 AM, "Jason Kridner"  wrote:

> There is some software associated with it as well, but I haven't tried
> it yet. Placed an order for mine---you'd think they'd be smart enough
> within TI to send me one AHEAD of the announcement, but whatever.
>
> I created a project page at http://beagleboard.org/project/prucape/
>
> Also, I was told on G+ that Micro Center has the Element14 BeagleBone
> Blacks available for $39. I confirmed they had boards at my local
> store. Not sure why the fire-sale pricing, but I don't see why not to
> take advantage of it and pick up a couple extra 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.
>

-- 
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] Should I Boot From SD Card?

2014-10-31 Thread Philip Polstra
This is what I do.  Part of the reason for leaving the factory image in
emmc is that my image of The Deck needs 12GB.
On Oct 31, 2014 2:09 PM, "Curt Carpenter" <1cjcarpen...@att.net> wrote:

> Hello!
>
> I have a 16GB SD card in my Beaglebone Black A5A.  I used it to flash the
> on-board eMMC to Debian, then reformated it to use as extra storage.  I
> boot from the on-board eMMC.
>
> I'm wondering if I would be better off, in the grand scheme of things, to
> boot from the big SD card and just ignore the eMMC, using it only as a
> backup in case my SD card goes south at some point.  I'd be pleased to hear
> from more experienced users about this choice and what course they would
> recommend.
>
> Thanks.
>
>
>  --
> 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] PRU - Low Latency I/O

2014-10-31 Thread Philip Polstra
Just wanted to add my book
http://store.elsevier.com/Hacking-and-Penetration-Testing-with-Low-Power-Devices/Philip-Polstra/isbn-9780128007518/
to the list from Jason's presentation (it came out after his
presentation).  In addition to the hacking stuff, there are chapters on
using XBee/ZigBee to remotely control the BBB, power requirements, and
developing your own Linux distro.  Those developing real time and/or
robotics projects on the BBB might find the information useful.

On Fri, Oct 31, 2014 at 1:00 PM, Bill Gray  wrote:

> Hello All!
>
> I've recently begun digging into the PRU for a realtime project that I am
> working on.
>
> I have found tons of helpful information out there, and I am now up and
> running with PRU programming!  Yay!
>
> One of the great resources I've found was this video of Jason Kridner
> talking about BBB in general and PRU programming in general.  It really
> helped me to understand what is going on and where things are headed (like
> why omap_mux is gone among other things)
>
>
> http://www.adafruit.com/blog/2014/07/01/real-time-programming-with-beaglebone-prus-by-jason-kridner-at-chicago-hackerspace-ps1-beagleboneblack-txinstruments-beagleboardorg/
>
> Presentation slides at this link...
>
> http://beagleboard.org/static/PumpingStationOne20140628_Real-timeProgrammingWithBeagleBonePRUs.pptx.pdf
>
> In this video, and in the accompanying slides Jason mentions that there
> are some I/O pins that are specially configured to provide low latency I/O
> to the PRU.  Since I only need 12 pins for my project, I would like to use
> these pins exclusively.
>
> I'm wondering if there is some special way that one needs to access them
> in order to get this low latency, or if they should be accessed through the
> same registers as "normal" gpio pins?  By the normal registers I mean...
>
> GPIO_DATAIN
> GPIO_DATAOUT
> GPIO_CLEARDATAOUT
> GPIO_SETDATAOUT
>
> Thanks so much.
>
> Bill
>
>
>
>
>  --
> 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] Alternatives to 4DCAPE?

2014-10-22 Thread Philip Polstra
They offer no touch versions as well.
On Oct 22, 2014 10:05 AM,  wrote:

> for my project i want a display screen but haven no need for it to be
> touch screen, if possible i'd like to avoid using the HDMI port and use the
> I/O ports instead. It needs to be around 3-4 inches in diameter. Any
> 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.
>

-- 
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] Devicetree problem

2014-10-15 Thread Philip Polstra
I am having the exact same issue with my XBee cape.  Strangely the
ttyO2_armhf.com overlay I found online loads, creates ttyO2, but it seems
like my Python scripts don't actually talk to it at all!

On Wed, Oct 15, 2014 at 9:58 AM, Robert Nelson 
wrote:

> On Wed, Oct 15, 2014 at 8:54 AM, faimbs  wrote:
> > Hello!
> >
> > I have month ago build a new device tree on RevB BBB. Its running
> >
> > Now I have a new RevC BBB and need the same. But always when I try to
> load
> > the DeviceTree Overlay I get:
> > bash: echo: write error: No such file or directory
> >
> > I copy the .dts files to an folder on the new BBB and start "sh make.sh"
> >
> > Then I have under "/lib/firmware" the .dtbo file
> > I also add to capemgr my customer DeviceTree.
> >
> > But when I try to load this with:
> > echo mycape >/sys/devices/bone_capemgr.9/slots
> >
> > I get:
> > bash: echo: write error: No such file or directory
>
> First does [/sys/devices/bone_capemgr.9/slots] exist?
>
> Second:
>
> http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#Privileged_echo
>
> 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/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: Disable X in new Rev C Debian Image

2014-10-01 Thread Philip Polstra
I'll mention it to the publisher.
On Oct 1, 2014 3:32 AM, "Bremenpl"  wrote:

> Hello Mr Polstra,
> I have managed to buy the pdf version of the book, im exited about the
> content. However there is one major drawback for an ebook lovel like me!
> You have forgotten to add bookmarks to the pdf :P!
>
> W dniu 2014-09-30 13:28, Philip Polstra pisze:
>
>>
>> Publisher currently has better price than amazon for most people here
>> http://store.elsevier.com/product.jsp?isbn=9780128007518&locale=en_EU&;
>> country=be
>>
>> Be warned that they are currently upgrading their fulfillment systems, so
>> you might want the eBook if you want lowest cost and quick service.  They
>> are also offering free eBook with print purchase, but only if you buy at
>> full price.
>>
>>
>>
> --
> Bremenpl
>
> --
> 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: Disable X in new Rev C Debian Image

2014-09-30 Thread Philip Polstra
Publisher currently has better price than amazon for most people here
http://store.elsevier.com/product.jsp?isbn=9780128007518&locale=en_EU&country=be

Be warned that they are currently upgrading their fulfillment systems, so
you might want the eBook if you want lowest cost and quick service.  They
are also offering free eBook with print purchase, but only if you buy at
full price.
On Sep 30, 2014 7:04 AM, "Bremenpl"  wrote:

>  I just checked it on Amazon, I would love to look it up, but
> unfortenutelly its not on my budget. In Europe it would be even more
> expensive coz the price would be in euros.
>
> W dniu 2014-09-30 12:54, Philip Polstra pisze:
>
> Just an FYI: there are two chapters in my book, Hacking and Penetration
> Testing with Low Power Devices, dedicated to building your own distro for
> the Beagles in a semiautomated way. The process I describe starts from a
> minimal system then adds packages from a Christmas list.
> On Sep 30, 2014 3:33 AM, "Bremenpl"  wrote:
>
>>  Hello there,
>> I have installed the console image as you advice. My problem now is that
>> The USB network adapter isnt present and the power button doesnt work- the
>> second problem also occured when I installed the standard rev C image. Are
>> there ways to fix this issue?
>>
>> W dniu 2014-09-29 19:41, William Hermans pisze:
>>
>>  *So ler me make sure I understand. If i put the flasher image on a Sd
>>> card and put it into bbb, it will automatically flash the image to emmc? I
>>> used to do this manually, i downloaded the image while booyed on sd card
>>> image and used dd.*
>>
>>
>>  That is the description of what a flasher image does, yes.
>>
>> On Mon, Sep 29, 2014 at 10:40 AM, Bremenpl  wrote:
>>
>>> So ler me make sure I understand. If i put the flasher image on a Sd
>>> card and put it into bbb, it will automatically flash the image to emmc? I
>>> used to do this manually, i downloaded the image while booyed on sd card
>>> image and used dd.
>>>
>>>
>>> Dnia 29 września 2014 19:34:22 Robert Nelson 
>>> napisał(a):
>>>
>>>  On Mon, Sep 29, 2014 at 12:25 PM, Bremenpl  wrote:
>>>> > Alright ill give it a try. I believe i need to power up my beaglebone
>>>> from a
>>>> > sd card to flash this into emmc. Are there any catches in here?
>>>>
>>>> Your choice, either use the "flasher" which runs a flashing script of
>>>> the microSD or the "standalone" which just runs off the microSD..
>>>>
>>>> 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 a topic in the
>>>> Google Groups "BeagleBoard" group.
>>>> To unsubscribe from this topic, visit
>>>> https://groups.google.com/d/topic/beagleboard/hMUYyE-AHKg/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 a topic in the
>> Google Groups "BeagleBoard" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/beagleboard/hMUYyE-AHKg/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.
>>
>>
>> --
>> Bremenpl
>>
>>  --
>> 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
>&g

Re: [beagleboard] Re: Disable X in new Rev C Debian Image

2014-09-30 Thread Philip Polstra
Just an FYI: there are two chapters in my book, Hacking and Penetration
Testing with Low Power Devices, dedicated to building your own distro for
the Beagles in a semiautomated way. The process I describe starts from a
minimal system then adds packages from a Christmas list.
On Sep 30, 2014 3:33 AM, "Bremenpl"  wrote:

>  Hello there,
> I have installed the console image as you advice. My problem now is that
> The USB network adapter isnt present and the power button doesnt work- the
> second problem also occured when I installed the standard rev C image. Are
> there ways to fix this issue?
>
> W dniu 2014-09-29 19:41, William Hermans pisze:
>
>  *So ler me make sure I understand. If i put the flasher image on a Sd
>> card and put it into bbb, it will automatically flash the image to emmc? I
>> used to do this manually, i downloaded the image while booyed on sd card
>> image and used dd.*
>
>
>  That is the description of what a flasher image does, yes.
>
> On Mon, Sep 29, 2014 at 10:40 AM, Bremenpl  wrote:
>
>> So ler me make sure I understand. If i put the flasher image on a Sd card
>> and put it into bbb, it will automatically flash the image to emmc? I used
>> to do this manually, i downloaded the image while booyed on sd card image
>> and used dd.
>>
>>
>> Dnia 29 września 2014 19:34:22 Robert Nelson 
>> napisał(a):
>>
>>  On Mon, Sep 29, 2014 at 12:25 PM, Bremenpl  wrote:
>>> > Alright ill give it a try. I believe i need to power up my beaglebone
>>> from a
>>> > sd card to flash this into emmc. Are there any catches in here?
>>>
>>> Your choice, either use the "flasher" which runs a flashing script of
>>> the microSD or the "standalone" which just runs off the microSD..
>>>
>>> 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 a topic in the
>>> Google Groups "BeagleBoard" group.
>>> To unsubscribe from this topic, visit
>>> https://groups.google.com/d/topic/beagleboard/hMUYyE-AHKg/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 a topic in the
> Google Groups "BeagleBoard" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/beagleboard/hMUYyE-AHKg/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.
>
>
> --
> Bremenpl
>
>  --
> 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] FYI: Deal on BeagleBone book on building remote hacking drones

2014-09-26 Thread Philip Polstra
Just an FYI for anyone contemplating buying my book Hacking and Penetration
Testing with Low Power Devices which is about building cheap, but powerful
hacking hardware from the BBB:

Syngress is running a sale on all their books where you can get a DRM-free
eBook for free when you buy a print book with deal code BOGO or up to 40%
off anything with deal code DELTA.  The net of this is that you can get the
eBook for $44.96 or both for $59.95 at
http://store.elsevier.com/product.jsp?isbn=9780128008249.

This sale goes till October 9th and as far as I know includes all their
books, not just mine.

-- 
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] Wireless mesh networking

2014-09-26 Thread Philip Polstra
It really depends on what you are trying to do.  The nice thing about
Zigbee is that you can configure the modems and then sit back and let the
network form, heal, etc. without any work on your part.  If you are only
interested in communications between nodes then Zigbee is a great choice
unless you need high speeds (250kbps is typical max speed).  This book
http://shop.oreilly.com/product/9780596807740.do has lots of good info on
Xbee/Zigbee (most of which is in my book) and is geared more toward Arduino.

A tip on my book: Syngress currently has a deal where you can buy the print
book and get a DRM-free eBook for free till October 9 at
http://store.elsevier.com/product.jsp?isbn=9780128007518.  Be sure to add
both to your shopping cart to get the free eBook.  The deal code is BOGO.

On Sat, Sep 27, 2014 at 12:23 AM, Brian Anderson  wrote:

> Thanks Phillip.  I'll have a look at your book.
>
> Actually, I am really interested in 802.11 based mesh networks because of
> bandwidth requirements.  I am interested in 802.11 based mesh networks and
> routing protocols and how to configure things to setup this style of
> wireless mesh network.  I am thinking that the 802.15.4 stuff relies on the
> Zigbee/Xbee mesh routing stuff rather than the 802.11s stuff in the recent
> Linux kernels.
>
> Cheers,
>
> ba
>
> --
> 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] Wireless mesh networking

2014-09-26 Thread Philip Polstra
I am using 802.15.4 (Zigbee) to connect BBBs together for security
penetration testing.  I am running my custom Linux, The Deck, to do this,
but you should be able to do the same with Debian or Ubuntu (which mine is
based on).  Logic systems started selling capes for this.  I have been
making my own.  Design is in my book
http://store.elsevier.com/product.jsp?isbn=9780128007518 and I'm planning
to sell some capes commercially as well soon.  One warning about the Logic
Systems capes: they lack the EEPROM which tells the BBB what they are so
you need to manually set that up on the BBB using the device tree overlays.

On Fri, Sep 26, 2014 at 5:30 PM, Brian Anderson  wrote:

> Hi all,
>
> I am interested in setting up a wireless mesh network using a collection
> of BBBs (and possibly other devices).  Does anyone have experience setting
> up a wireless mesh network using BBB?
>
> I am not really interested in a so-called "wireless distribution system"
> that is used to extend an SSID across a wide area using wireless mesh
> networking.  I am much more interested in setting up a network of
> cooperating nodes that talk with each other (and to the internet via a
> gateway/mesh portal connected simultaneously to the internet and the mesh).
>
> In particular, I'm interested in:
>
>   * What distro and kernel are you using?
>   * Ideally this would be with one of RCNs Debian images, but if not,
> I'm interested in what you might have used.
>   * If you have done something with a Linux based system other than a
> BBB, I'd like to know about that too.
>   * What mesh routing protocol was used?  Batman, Babel/AHCP, HWMP, OLSR,
> ...
>   * Steps to configure the mesh network and gateway.
>   * Did you use 802.11s?  If so, presumably using the 802.11s support in
> the kernel?
>   * WiFi chipset that was used (presumably supporting mesh mode).  SOFTMAC
> or HARDMAC?
>
> I have researched the topic fairly extensively and can probably set
> something up via trial and error myself.  Prior to diving into that, I
> wanted to see if anyone has already done some work with wireless mesh
> networking and BBB (or something else) and would be willing to share their
> experience and knowledge!
>
> Thanks in advance.
>
> Cheers,
>
> ba
>
>  --
> 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] Beagle Bone can't ping or ssh

2014-09-17 Thread Philip Polstra
Can  you connect a monitor to the BBB to see what is happening?

On Wed, Sep 17, 2014 at 9:50 AM, sufi al hussaini 
wrote:

> I have connected the ethernet cable to my network (via router). I've
> assigned a static ip to my BB.
> I have connected to the BB via USB as well. Both these IPs are not
> pingable.
>
> On Wednesday, September 17, 2014 5:46:44 PM UTC+4, Philip Polstra wrote:
>>
>> If you have connected the ethernet cable between the PC and the BBB that
>> is likely the problem.  You need to plug the BBB into a router so it can
>> get an IP address assigned.  By default, it is setup to get a dynamic IP
>> address via DHCP.
>>
>> On Wed, Sep 17, 2014 at 9:31 AM, sufi al hussaini 
>> wrote:
>>
>>> I have connected the ethernet cable to the beaglebone. I'm using an Ubuntu
>>> Raring Armhf with kernel 3.8.13-bone18. The one with Asterix PBX.
>>>
>>> Yes, the SD card shows up on my PC.
>>>
>>> On Wednesday, September 17, 2014 5:24:56 PM UTC+4, Philip Polstra wrote:
>>>>
>>>> What are you connecting the Ethernet cable to?  Which Linux distro are
>>>> you running?  If you connect the USB cable to a PC does it show up as a
>>>> storage device?
>>>>
>>>> On Wed, Sep 17, 2014 at 9:16 AM, sufi al hussaini >>> > wrote:
>>>>
>>>>> Hi,
>>>>>
>>>>> I have been having a problem with my beaglebone. It seems to boot, the
>>>>> heartbeat LED is blinking. Everything seems fine, but I can't ping it.
>>>>> I tried both with the USB cable and the ethernet cable.
>>>>>
>>>>> Could this be a hardware problem?
>>>>>
>>>>>
>>>>> Regards,
>>>>> Zaxter.
>>>>>
>>>>> --
>>>>> 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...@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] Beagle Bone can't ping or ssh

2014-09-17 Thread Philip Polstra
If you have connected the ethernet cable between the PC and the BBB that is
likely the problem.  You need to plug the BBB into a router so it can get
an IP address assigned.  By default, it is setup to get a dynamic IP
address via DHCP.

On Wed, Sep 17, 2014 at 9:31 AM, sufi al hussaini 
wrote:

> I have connected the ethernet cable to the beaglebone. I'm using an Ubuntu
> Raring Armhf with kernel 3.8.13-bone18. The one with Asterix PBX.
>
> Yes, the SD card shows up on my PC.
>
> On Wednesday, September 17, 2014 5:24:56 PM UTC+4, Philip Polstra wrote:
>>
>> What are you connecting the Ethernet cable to?  Which Linux distro are
>> you running?  If you connect the USB cable to a PC does it show up as a
>> storage device?
>>
>> On Wed, Sep 17, 2014 at 9:16 AM, sufi al hussaini 
>> wrote:
>>
>>> Hi,
>>>
>>> I have been having a problem with my beaglebone. It seems to boot, the
>>> heartbeat LED is blinking. Everything seems fine, but I can't ping it.
>>> I tried both with the USB cable and the ethernet cable.
>>>
>>> Could this be a hardware problem?
>>>
>>>
>>> Regards,
>>> Zaxter.
>>>
>>> --
>>> 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] Beagle Bone can't ping or ssh

2014-09-17 Thread Philip Polstra
What are you connecting the Ethernet cable to?  Which Linux distro are you
running?  If you connect the USB cable to a PC does it show up as a storage
device?

On Wed, Sep 17, 2014 at 9:16 AM, sufi al hussaini 
wrote:

> Hi,
>
> I have been having a problem with my beaglebone. It seems to boot, the
> heartbeat LED is blinking. Everything seems fine, but I can't ping it.
> I tried both with the USB cable and the ethernet cable.
>
> Could this be a hardware problem?
>
>
> Regards,
> Zaxter.
>
> --
> 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: Installing Kali Linux (Arm) onto BeagleBone Black Rev C

2014-09-17 Thread Philip Polstra
Not really, there are several good choices for the BBB. Kali just isn't one
of them by their own admission.
On Sep 17, 2014 8:24 AM, "William Hermans"  wrote:

> So, in the end this turns into another distro war ?
>
> On Wed, Sep 17, 2014 at 4:30 AM, Philip Polstra 
> wrote:
>
>> What Jason said. ;-) The Deck, unlike Kali is custom built for the
>> beagles.  Version 2.0 is available on sourceforge.  It was just released to
>> coincide with the release of my book on hacking the crap out of things from
>> up to a mile away.
>> http://www.amazon.com/Hacking-Penetration-Testing-Power-Devices/dp/0128007516/ref=la_B00MZBRU8M_1_1?s=books&ie=UTF8&qid=1410477346&sr=1-1
>>
>> A build I'm working on for Jayson Street has several recently posted
>> pictures on Twitter. Check out @ppolstra's Tweet:
>> https://twitter.com/ppolstra/status/512025525641297920
>> On Sep 16, 2014 10:41 PM, "Jason Kridner" 
>> wrote:
>>
>>> Don't miss "The Deck" either.
>>>
>>> On Tue, Sep 16, 2014 at 10:36 PM, Don deJuan 
>>> wrote:
>>> > On 09/16/2014 02:19 PM, vermins...@gmail.com wrote:
>>> >
>>> >
>>> http://www.offensive-security.com/kali-linux-vmware-arm-image-download/
>>> >
>>> >
>>> >
>>> > On Tuesday, September 16, 2014 12:47:59 PM UTC-7, macuber...@gmail.com
>>> > wrote:
>>> >>
>>> >> Would anyone know of a set of instructions on how to install Kali to
>>> the
>>> >> BeagleBone Black Rev C?
>>> >
>>> > --
>>> > 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.
>>> >
>>> >
>>> > They also state it does not have great performance on BBB. Try out
>>> > ArchAssault, way more customizable and lightweight. Its exactly the
>>> pwnbox
>>> > you desire the only bloat that is there is what you put on it.
>>> >
>>> > --
>>> > 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.
>>
>
>  --
> 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] Why is it using BBB in commercial products not encouraged?

2014-09-17 Thread Philip Polstra
I have some bb-xm and original beaglebone boards I have been running since
I bought them years ago that only get shut down when I move them. No issues
with reliability.

You can base commercial products on this board and people do so.
On Sep 17, 2014 7:29 AM, "sufi al hussaini" 
wrote:

> I have boards running nearly continuously for years.
>>
> Do you mean "BBB" boards?
>
> If I were to clone and get my own hardware, would the prebuilt linux
> images(for BBB) and other capes work out-of-the-box on my hardware? Forgive
> me if this is a stupid question. I'm only a newbie.
>
> Thanks.
>
> On Wednesday, September 17, 2014 3:21:58 PM UTC+4, Philip Polstra wrote:
>>
>> I have boards running nearly continuously for years.  I think the thought
>> is that if you had to make loads of devices based on this you should just
>> clone the open source design.
>> On Sep 17, 2014 5:32 AM, "sufi al hussaini"  wrote:
>>
>>> Hi everyone,
>>>
>>> Just wanted to ask about this. I have read this at more than one place,
>>> but I couldn't understand the reason behind it.
>>> Why shouldn't I use BBB in commercial products? Or why isn't it
>>> encouraged?
>>>
>>> Does it have something to do with over all system stability and other
>>> technical issues? Or is it simply because BBB production is lagging behind
>>> demand?
>>>
>>> Regards,
>>> Zaxter.
>>>
>>> --
>>> 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] Re: Installing Kali Linux (Arm) onto BeagleBone Black Rev C

2014-09-17 Thread Philip Polstra
What Jason said. ;-) The Deck, unlike Kali is custom built for the
beagles.  Version 2.0 is available on sourceforge.  It was just released to
coincide with the release of my book on hacking the crap out of things from
up to a mile away.
http://www.amazon.com/Hacking-Penetration-Testing-Power-Devices/dp/0128007516/ref=la_B00MZBRU8M_1_1?s=books&ie=UTF8&qid=1410477346&sr=1-1

A build I'm working on for Jayson Street has several recently posted
pictures on Twitter. Check out @ppolstra's Tweet:
https://twitter.com/ppolstra/status/512025525641297920
On Sep 16, 2014 10:41 PM, "Jason Kridner" 
wrote:

> Don't miss "The Deck" either.
>
> On Tue, Sep 16, 2014 at 10:36 PM, Don deJuan 
> wrote:
> > On 09/16/2014 02:19 PM, vermins...@gmail.com wrote:
> >
> > http://www.offensive-security.com/kali-linux-vmware-arm-image-download/
> >
> >
> >
> > On Tuesday, September 16, 2014 12:47:59 PM UTC-7, macuber...@gmail.com
> > wrote:
> >>
> >> Would anyone know of a set of instructions on how to install Kali to the
> >> BeagleBone Black Rev C?
> >
> > --
> > 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.
> >
> >
> > They also state it does not have great performance on BBB. Try out
> > ArchAssault, way more customizable and lightweight. Its exactly the
> pwnbox
> > you desire the only bloat that is there is what you put on it.
> >
> > --
> > 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] Why is it using BBB in commercial products not encouraged?

2014-09-17 Thread Philip Polstra
I have boards running nearly continuously for years.  I think the thought
is that if you had to make loads of devices based on this you should just
clone the open source design.
On Sep 17, 2014 5:32 AM, "sufi al hussaini" 
wrote:

> Hi everyone,
>
> Just wanted to ask about this. I have read this at more than one place,
> but I couldn't understand the reason behind it.
> Why shouldn't I use BBB in commercial products? Or why isn't it encouraged?
>
> Does it have something to do with over all system stability and other
> technical issues? Or is it simply because BBB production is lagging behind
> demand?
>
> Regards,
> Zaxter.
>
> --
> 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] Beaglebone with 10" touch screen

2014-09-15 Thread Philip Polstra
Does it have to be a 10" or would a 7" do the trick.  The screens from 4D
systems work out of the box and at $89 are very affordable.  Adafruit also
has this listed under their BBB products which should imply that it works
http://www.adafruit.com/products/1287.

On Mon, Sep 15, 2014 at 8:12 AM,  wrote:

>
> Hi,
>
>  For a project I need a beaglebone and a 10 inch Touch lcd screen. But
> that isn't that easy as it sounds.
>  I did buy a lcd cap. But they only work with there own distribution. A
> embedded HDMI touch monitor is (almost) impossible to source. It needs to
> be build in a frame.
>
>   So I 'm only solution is a LVDS LCD touch screen and a HDMI LVDS
> converter.
>  But I didn 't find a good source for HDMI LVDS converter so I have to
> make my own.
>
>   So am I missing something, is there no easy way to connect a Touch LCD
> module on a beaglebone that works with a standard linux distribution?
>
>  --
> 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] Best place to get BBB in Europe?

2014-09-12 Thread Philip Polstra
I'm doing a workshop related to my book, Hacking and Penetration Testing
with Low Power Devices, on building remote hacking drones from the BBB in 2
weeks at BruCON.  Does anyone have recommended sources for the BBB in the
EU for my workshop attendees?

Thanks,

Dr. Phil

-- 
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] Ubuntu on Beagle Bone Black

2014-08-29 Thread Philip Polstra
Check your SD card to be sure there is a uenv.txt file in the boot
partition.  I have seen the file not get changed from uenv-BBB.txt which
leads to this problem.
On Aug 29, 2014 11:02 PM, "DR"  wrote:

>
> Hi, I'm following http://elinux.org/BeagleBoardUbuntu#Saucy_13.10 to try
> and load Ubuntu on my Beagle Bone Black.  The SD card loads OK but when I
> try and load boot I eventually get two solid LEDs and I'm using a 5v supply.
>   Any ideas what the problem might be?
>
> --
> 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] Strange question from a newbie

2014-08-25 Thread Philip Polstra
Not 100% sure about what would happen in your case.  I am running Ubuntu
14.04 with LXDE which I added on myself after the initial install.  As a
result everything I expect to be in the menu is in there.  Might be a
better way to go and safer too.


On Mon, Aug 25, 2014 at 11:42 PM, Edwin Maynard 
wrote:

> I have a strange question that Googling hasn't been able to resolve and I
> am betting that the answer is simple. I am using the 8-19 LXDE flasher
> image (I realize that it is an alpha). It loads fine, and pretty much
> everything seems to be happy (standalone, ssh, vnc) and ticking along.
> Here's the funny question - the rootfs is very full but I only see a couple
> of things on the LXDE menu. I am pretty sure things like python are there
> but nothing in the menu. Likewise with the Accessories menu - Leafpad,
> Lxterminal, and something else - that's it.
>
> If I were to run something along the lines of "apt-get reinstall all"
> would I be chancing a total trainwreck? Is there something that can go
> through the file system and populate the menu - even if I need to change
> the categories? One note - I did add a user so I am not running the
> "debian" account.
>
> Thanks in advance for the assistance.
>
> Ed
>
> --
> 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] The Deck 2.0 (Linux for penetration testers) for BBB now available

2014-08-21 Thread Philip Polstra
Not terribly familiar with ArchAssault.  In fact, I had no idea they were
using the MeshDeck or 4Deck (not that I have any problems with that).  I
will say that Kali admits that it doesn't work well on the BBB.  This is
because it is just a straight port of an Intel based system.  The Deck was
meant to run on the ARM platform from the start.  It offers a lot more when
it comes to things like scripted attacks.  It is also meant to be used in
an environment where downloading new packages is difficult.  That is why it
includes over 4k packages from the start.  Also, don't know what desktop
Kali uses, but I'm using LXDE which is pretty lightweight.  The Deck runs
on my 7" 4D systems touchscreen with no issues.


On Thu, Aug 21, 2014 at 4:04 PM, Don deJuan  wrote:

>  On 08/21/2014 12:57 PM, Philip Polstra wrote:
>
> The Deck 2.0, a special BBB Linux distribution for security penetration
> testers, is now available on SourceForge at
> http://sourceforge.net/projects/thedeck/files/Latest/.  This new version
> is chuck full of hacking goodness in over 4k packages and 12GB+.  If you
> don't wish to download 6GB of files from SourceForge you can also buy
> preloaded microSD cards at https://specialcomp.com/beagleboard/thedeck.htm.
>
>
>  More info:
> http://store.elsevier.com/Hacking-and-Penetration-Testing-with-Low-Power-Devices/Philip-Polstra/isbn-9780128007518/
>  --
> 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.
>
> What does it offer over other projects such as ArchAssault or Kali? I know
> ArchAssault offers meshdeck and 4deck which are your tools, but other than
> those what sets the deck over other pentest ARM OS options out there?
>
> --
> 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] The Deck 2.0 (Linux for penetration testers) for BBB now available

2014-08-21 Thread Philip Polstra
The Deck 2.0, a special BBB Linux distribution for security penetration
testers, is now available on SourceForge at
http://sourceforge.net/projects/thedeck/files/Latest/.  This new version is
chuck full of hacking goodness in over 4k packages and 12GB+.  If you don't
wish to download 6GB of files from SourceForge you can also buy preloaded
microSD cards at https://specialcomp.com/beagleboard/thedeck.htm.

More info:
http://store.elsevier.com/Hacking-and-Penetration-Testing-with-Low-Power-Devices/Philip-Polstra/isbn-9780128007518/

-- 
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] Some upcoming BeagleBone books

2014-08-12 Thread Philip Polstra
There are some interesting upcoming BeagleBone books that I'm aware of:

BeagleBone For Secret Agents by Josh Datko
https://www.packtpub.com/hardware-and-creative/beaglebone-secret-agents

A yet to be titled book by Bill Pretty who previously wrote Building a Home
Security System with BeagleBone
https://www.packtpub.com/hardware-and-creative/building-home-security-system-beaglebone

I was a technical reviewer on both of these books.

Finally, my own book on building hacking hardware based on the BeagleBone,
Hacking and Penetration Testing with Low Power Devices, is now available
for pre-order at Amazon
http://www.amazon.com/Hacking-Penetration-Testing-Power-Devices/dp/0128007516

-- 
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] DEFCON 22

2014-08-08 Thread Philip Polstra
Anyone else at DEFCON would love to meet up. Maybe after my talk in Penn
and Teller at 3pm today.

-- 
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: BBB failure to boot, due to our cape.

2014-06-19 Thread Philip Rowse
Yes, I confirmed that it is ROM in the true silicone sense So I will look 
to see what I can do in hardware to get things moving... Will send a fix out to 
you all soon

Philip Rowse 
Electrical Engineering Department
3DRobotics
Ballarat
Australia




> On 18 Jun 2014, at 18:44, Anuj Deshpande  wrote:
> 
> Hi All
>  i read up on the ROM boot code, and it's masked. we can't make changes to it 
> at all.
> http://tara.mmto.org/computers/beagle/uboot.html
> we have the address, etc. of the place where the ROM boot loader is, but we 
> won't be able to make changes to it.
>  also, this discussion on the ti forum 
> http://e2e.ti.com/support/arm/sitara_arm/f/791/t/158347.aspx
>  so ROM -> MLO -> U-Boot. and only the last 2 can be edited.
> 
> 
>> On Tue, Jun 17, 2014 at 7:49 PM, Philip Rowse  wrote:
>> Cc'd to the BBB group as well
>> 
>> Where can we fond the code to the Boot Rom?  For the next revision of our 
>> cape, I will be fixing the enable, I am aware of this, the power too the 
>> level shifters was to be enabled via the SYS_RESETN, but it has caused other 
>> issues, so now it is hard connected via a jumper.
>> 
>> There are only a few of these capes for development purposes, so we would 
>> like to modify the ROM to allow for this on these capes.
>> 
>> There will be further changes to revision 2 of the cape, but before that, I 
>> need to allow development to continue, regardless of hardware issues
>> 
>> For this application, being an autopilot, we are going for a fixed 
>> configuration, so we do not have any unexpected behaviour during flight, due 
>> to user configuration changes.
>> 
>> Thanks
>> 
>> Philip
>> 
>> 
>> 
>> 
>> > On 16 Jun 2014, at 20:22, Jason Kridner  wrote:
>> >
>> > On Mon, Jun 16, 2014 at 10:37 PM, Anuj Deshpande
>> >  wrote:
>> >> That's indeed right. The first stage one is called MLO it seems
>> >> http://wiki.beyondlogic.org/index.php/BeagleBoneBlack_Boot_Process
>> >>
>> >>
>> >>
>> >> On Tue, Jun 17, 2014 at 8:04 AM, Andrew Tridgell 
>> >> wrote:
>> >>>
>> >>> Hi Anuj,
>> >>>
>> >>>> Check the link
>> >>>> https://github.com/beagleboard/U-boot
>> >>>
>> >>> I may be wrong, but my impression is that U-Boot is a 2nd stage
>> >>> bootloader, and there is a first stage that selects boot media and loads
>> >>> U-Boot. My suspicion is it is the first stage that is failing, probably
>> >>> due to the first stage looking at pin values changed by the cape that
>> >>> change the selection of available boot media. If that is wrong please
>> >>> let me know.
>> >
>> > Before MLO is the ROM bootloader. It looks at the boot pins.
>> >
>> > See 
>> > https://github.com/CircuitCo/BeagleBone-Black/blob/master/BBB_SRM.pdf?raw=true
>> > pages 34, 97 and 106. The SYSBOOT signals are detailed in
>> > http://www.ti.com/lit/ug/spruh73j/spruh73j.pdf on Table 26-7.
>> >
>> > You want to avoid pulling these before SYS_RESETN goes high, just like
>> > the SRM says.
>> >
>> >>>
>> >>> I haven't found a doc that explains the early stage boot process, if you
>> >>> found one that would be very helpful.
>> >>>
>> >>> Cheers, Tridge
>> >>
> 

-- 
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: BBB failure to boot, due to our cape.

2014-06-17 Thread philip
I am aware that Rom means read only.
I am aware that I need to fix the cape on the next revision

My question
Is the ROM, hard coded silicone? OTP? Or JTAG flashed, all of which are 
commonly referred to as ROM.

The time to spin new hardware is longer than the GSOC students have to do their 
projects, so I am looking for a short term fix.

If it is hard coded, I will have no choice but to spin new hardware, that's the 
question

-- 
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: BBB failure to boot, due to our cape.

2014-06-17 Thread Philip Rowse
Cc'd to the BBB group as well

Where can we fond the code to the Boot Rom?  For the next revision of our cape, 
I will be fixing the enable, I am aware of this, the power too the level 
shifters was to be enabled via the SYS_RESETN, but it has caused other issues, 
so now it is hard connected via a jumper.

There are only a few of these capes for development purposes, so we would like 
to modify the ROM to allow for this on these capes.

There will be further changes to revision 2 of the cape, but before that, I 
need to allow development to continue, regardless of hardware issues

For this application, being an autopilot, we are going for a fixed 
configuration, so we do not have any unexpected behaviour during flight, due to 
user configuration changes.

Thanks

Philip 




> On 16 Jun 2014, at 20:22, Jason Kridner  wrote:
> 
> On Mon, Jun 16, 2014 at 10:37 PM, Anuj Deshpande
>  wrote:
>> That's indeed right. The first stage one is called MLO it seems
>> http://wiki.beyondlogic.org/index.php/BeagleBoneBlack_Boot_Process
>> 
>> 
>> 
>> On Tue, Jun 17, 2014 at 8:04 AM, Andrew Tridgell 
>> wrote:
>>> 
>>> Hi Anuj,
>>> 
>>>> Check the link
>>>> https://github.com/beagleboard/U-boot
>>> 
>>> I may be wrong, but my impression is that U-Boot is a 2nd stage
>>> bootloader, and there is a first stage that selects boot media and loads
>>> U-Boot. My suspicion is it is the first stage that is failing, probably
>>> due to the first stage looking at pin values changed by the cape that
>>> change the selection of available boot media. If that is wrong please
>>> let me know.
> 
> Before MLO is the ROM bootloader. It looks at the boot pins.
> 
> See 
> https://github.com/CircuitCo/BeagleBone-Black/blob/master/BBB_SRM.pdf?raw=true
> pages 34, 97 and 106. The SYSBOOT signals are detailed in
> http://www.ti.com/lit/ug/spruh73j/spruh73j.pdf on Table 26-7.
> 
> You want to avoid pulling these before SYS_RESETN goes high, just like
> the SRM says.
> 
>>> 
>>> I haven't found a doc that explains the early stage boot process, if you
>>> found one that would be very helpful.
>>> 
>>> Cheers, Tridge
>> 

-- 
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] Recommend wifi for BBB and debian

2014-06-06 Thread Philip Polstra
If you are doing any wifi hacking the Alfa awus036h works well.
On Jun 6, 2014 7:15 PM, "Charles Kerr"  wrote:

> Does anyone have a recommendation for an usb to wifi ethernet for BBB
> running debian
>
> --
> 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] Future versions of Beagle board with more RAM And Flash?

2014-05-14 Thread Philip Polstra
current version is 512MB RAM and 4GB Flash.  I have done lots of CPU
intensive hacking with the BeagleBone.


On Wed, May 14, 2014 at 8:31 AM,  wrote:

>
> I would love to use the beagleboard but I need a fair amount of RAM. 256MB
> is not enough .
>
> Ist there a chance of a future version with 1GB RAM and Flash?
>
> At the moment I must use the Raspberry Pi (512mb)  or the Banana Pi.(1GB)
>
> Just a thought!
>
> M
>
> --
> 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] Beaglebone Quadcopter!

2014-05-12 Thread Philip Polstra
I would like a longer flight time and something that can be flown outside
in some wind.  My primary focus is delivering a BBB equipped with 802.15.4
and wifi running my pentesting Linux distro to hard to reach targets.
On May 12, 2014 7:11 PM, "Mike McDonald"  wrote:

> Hey guys,
>
> A group of Rose-Hulman students have been hard at work this past year
> building a Beaglebone Quadcopter with these goals in mind:
>
> 1. Low cost ($100-150 w/o Beaglebone)
> 2. Fully open source (Cape, Frame, and all control software) on our 
> Github
> .
> 3. Easy to assembly and repair (we estimate it will take 1-2 hours to
> assemble and get ready to fly)
> 4. Durable and easy to fly (currently supports USB game controller
> control, though we initially tested using a USB RC controller, though it's
> also possible to eventually use a cell phone as a controller) with a 10
> minute flight time
> 5. Sensor packed: 9-Axis (MPU 9150), Altimeter (BMP 180), Ultrasonic
> Rangefinder (HC SR04), Battery Gas Gauge (MAX 17044), and CMOS Camera
> (OV7670).
>
> The Quadcopter is flown via WiFi and Bluetooth (though streaming video
> doesn't yet work over Bluetooth) from a host computer (you need somewhere
> to view the streaming video from). Additionally, we're using a Debian image
> and have added Xenomai for better real time performance. We're also using
> both PRU's: one for real time motor control and one for the camera. With
> the quadcopter software running, we've still got 80+% of the CPU free for
> other processing (OpenCV, etc.).
>
> We're currently using a PID control scheme, but we may be switching to a
> sweet state variable feedback system (or getting a senior design group next
> year to do it).
>
> So, we want some feedback from you guys on the following:
>
>1.
> *Would you buy one of these Quadcopters? *
>2.
> *Is our price point reasonable? Is this something worth selling ourselves
>or would this be a good kickstarter project? *
>3. *Are there any other features you think are critical (wouldn't buy
>without it)?*
>
> If you want to dive deeper into our design:
>
>1. *How does the software look (particularly the PRU to C interface)?
>Would you be willing to maintain it, or update it to State Variable?*
>2. *How does the PCB look? Are there any flaws you see? Would you want
>to add or remove any other sensors?*
>3. *How does the mechanical design (Quadcopter frame) look? Is it
>aesthetically pleasing? Easy to build (if you have a laser cutter, give it
>a try and let us know)? Easy to fix when broken?*
>
> Here are some pictures:
>
>
> 
>
>
> 
>
>
> 
>
>
> 
>
> Videos are available on here
> (and on the
> github).
> Our best video is probably 
> here,
> as it shows it both flying as well as the streaming video.
>
> If you guys have any questions, respond here or email me back.
>
> Thanks!
>
>
>
>
>
>
>  --
> 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.


  1   2   >