Building Zephyr of your Own Clone via git
1. hey@you: git clone https://github.com/some_dude/zephyr.git
2. hey@you: mkdir Flagrant && mv zephyr/ Flagrant/
3. Building the files needed...
a. hey@you: python3 -m venv ~/zephyrproject/.venv
b. hey@you: source ~/zephyrproject/.venv/bin/activate
c. hey@you: cd Flagrant/zephyr/ && pip install west
d. hey@you: west update
e. hey@you: west zephyr-export
f. hey@you: west packages pip --install
4. now, it boils down to porting the new board (beagley-ai which is already ported and working)
5. the reason for making it a separate build is to not mess with what works
Just a heads up here. I have successfully built what someone else did to make it work. All fine and dandy on that front.
I am getting errors in zephyr for building on a board called the y-ai. It is a play on wording. It seems adding architecture is very difficult and adding GPIO within zephyr for the am67a onboard the beagley-ai is a little less complicated.
So, I am going to try to build the less complicated version to start. So far, I have renamed some files and added /zephyr/boards/y-ai/* where * are my files mislabeled.
Has anyone ported a board successfully in zephyr on their own git clone?
Seth