You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
0 B
13 lines
0 B
10 years ago
|
if [ "`echo $1`" = "load" ]; then
|
||
|
echo "Loading Capes..."
|
||
|
echo BB-BBBMINI > /sys/devices/bone_capemgr.9/slots
|
||
|
echo am33xx_pwm > /sys/devices/bone_capemgr.9/slots
|
||
|
echo bone_pwm_P8_36 > /sys/devices/bone_capemgr.9/slots
|
||
|
dmesg | grep "SPI"
|
||
|
dmesg | grep "PRU"
|
||
|
cat /sys/devices/bone_capemgr.9/slots
|
||
|
else
|
||
|
echo "Usage:"
|
||
|
echo " ./startup.sh load : to load the capes"
|
||
|
fi
|