make sure you install the dependencies as build-essential. then run:
#!/bin/sh
set -x
cd /tmp/
git clone https://github.com/RobertCNelson/dtb-rebuilder.git
cd dtb-rebuilder
cp /root/devicetree/P9-15-pull-up.dtsi src/arm/
#cp /root/devicetree/am335x-cape-rtc-ds1307.dtsi src/arm/
cp /root/devicetree/i2c-1.dtsi src/arm/

#git clone https://github.com/beagleboard/bb.org-overlays
[ ! -f 'src/arm/am335x-boneblack.dts' ] && echo 'Missing 
src/arm/am335x-boneblack.dts' && exit 1
cat << EOF >>'src/arm/am335x-boneblack.dts'
#include "P9-15-pull-up.dtsi"
#include "am335x-cape-rtc-ds1307.dtsi"
#include "i2c-1.dtsi"
EOF

./dtc-overlay.sh
make
/bin/cp src/arm/am335x-boneblack.dtb /boot/dtbs/


in this code I use GPIO P9 pin 15 as pull-up as well as add overlays for 
i2c and rtc.
all seems to work for me.

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

Reply via email to