Yes, your post:
leds_gpio 3186 0
is what I want. I don't know why my board has no such module.
For whats it's worth though none of the modules you have loaded resemble those that a beaglebone has loaded.
You think my board does not load leds? I have been supposing that Sitara board SK is similar to BeagleBone Black. It has 5 LEDS D1--D5, quite similar to BBB.
Thanks,
--
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/GoYJdV9MI3c/unsubscribe.
To unsubscribe from this group and all its topics, send an email to beagleboard...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi,
The lsmod online help says it reads /proc/modules.
The SK board is using NFS TFTP, see below please.
root@am335x-evm:~# cat /proc/cmdline
console=ttyO0,115200n8 root=/dev/nfs nfsroot=192.168.0.109:/home/u64rj/ti-proces
sor-sdk-linux-am335x-evm-01.00.00.03/targetNFS,nolock rw ip=dhcp
root@am335x-evm:~# lsmod
Module Size Used by
bufferclass_ti 5396 0
omaplfb 12042 1
musb_dsps 7319 0
musb_hdrc 54316 1 musb_dsps
snd_soc_evm 5589 0
wlcore_sdio 5153 0
pvrsrvkm 177007 6 bufferclass_ti,omaplfb
compat 2624 1 wlcore_sdio
lis3lv02d_i2c 3153 0
lis3lv02d 14936 1 lis3lv02d_i2c
snd_soc_tlv320aic3x 40349 1
input_polldev 3345 1 lis3lv02d
cryptodev 32483 1
musb_am335x 1217 0
snd_soc_davinci_mcasp 15606 2
On host Ubuntu PC folder:
/home/u64rj/ti-processor-sdk-linux-am335x-evm-01.00.00.03/targetNFS/proc,
there is no file at all. Where is the above lsmod content from?
Note that standard kernel drivers exist for common "LEDs and Buttons" GPIO tasks: "leds-gpio" and "gpio_keys", respectively. Use those instead of talking directly to the GPIOs; they integrate with kernel frameworks better than your userspace code could.
What category does GPIO in BeagleBone Black belong to?
What is about the built-in GPIO in my AM3358 SK board?
Thanks,
On Sep 7, 2015 9:32 AM, "RJ Wang" <rxj...@gmail.com> wrote:
>
> On link
> https://www.kernel.org/doc/Documentation/gpio/sysfs.txt
> it is talked about gpio
>
> It has comments:
>
> Note that standard kernel drivers exist for common "LEDs and Buttons"
> GPIO tasks: "leds-gpio" and "gpio_keys", respectively. Use those
> instead of talking directly to the GPIOs; they integrate with kernel
> frameworks better than your userspace code could.
>
>
> What category does GPIO in BeagleBone Black belong to?
Led-gpio
>
> What is about the built-in GPIO in my AM3358 SK board?
Just actually look at the kernel dts file for you board.
Regards,
--
You received this message because you 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.
Dynamic == Compiled as a module - Can be added / removed at will using modprobe - technically . . .