Hi!
I'm now integrating TI wilink8 to my Zedboard and I stuck with some problems.
Since the provided scripts are for microzed I try to follow the script manually with some modifications.
Here are my steps:
1. Clone the build-utilites from repo and init it (Just follow the script)
cd ~/Documents
git clone git://git.ti.com/wilink8-wlan/build-utilites.git
cd build-utilites
git checkout tags/ol_r8.a9.14
cp setup-env.sample setup-env
./build_wl18xx.sh init
2. Modify the kernel config (.config)
3. copy the driver from step 1 to kernel src
rm -r drivers/net/wireless/ti/*
cp -r ~/Documents/build-utilites/src/driver/drivers/net/wireless/ti/* drivers/net/wireless/ti/
4. I skip the kernel patch part now, and just build the kernel.
Since I don't think the kernel version I use is fitting the patch it provides. (build successfully)
Since I don't think the kernel version I use is fitting the patch it provides. (build successfully)
Here comes the problem, I have no idea how to modify the default dts file. I have read the provided microzed device tree, but still have no idea how to make them fit the Zedboard.
Also, I check the following guide.
After I check both the provided microzed dts and the guide, I totally confused about what should I modify in Zedboard's device tree, since they are quite different.
Could any one please give me some advice about the problem?
Thank you in advance!!