On Thu, Mar 2, 2017 at 11:22 AM, Jeff Andich <[email protected]> wrote: > Hi, > > I apologize if this has already been posted somewhere else.... We're making > a custom board based on the TI 5718 chip and currently have TI SDK kernel > and FS net booting on the TI 572X EVM from an Ubuntu VM. > > We're new to Linux. > > When discussing whether to whole-heatedly embrace the TI SDK (+ Yocto/Arago) > vs Debian with a number of different folks, one very knowledgeable guy I had > to fortune of speaking with suggested we try a hybrid approach: > Use the Debian FS image, from the BeagleBoard-X-15, and the kernel, boot > loader, and device tree from the TI SDK for the 572X EVM. > > I'm wondering if anyone has tried loading the TI SDK kernel, but with the > Debian FS image for the BeagleBoard X-15... > > If so, what has your experience been? > > Is the process as simple as telling U-boot to load the SDK kernel image, and > then the TI SDK kernel to load the Debian FS image instead of the stock FS > image which comes with the TI SDK?
It's easy, just: Copy modules to: /lib/modules/`uname -r`/ Copy device tree binaries to: /boot/dtbs/`uname -r`/*.dtb copy vmlinuz/zimage to: /boot/vmlinuz-`uname -r` in /boot/uEnv.txt set: uname_r=`uname -r` if you want to specify a specific device tree binary to load: set: dtb=my-device-tree.dtb 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/CAOCHtYi0qk5oxasWmRa-SUa4F_T%2BHDhWFxteLyAOB-jn8ajxmA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
