diff options
author | Brandon Bayer <bbayer@multitech.com> | 2016-11-02 17:22:40 -0500 |
---|---|---|
committer | Brandon Bayer <bbayer@multitech.com> | 2016-11-02 17:22:40 -0500 |
commit | 90ef22f6866b1d0e43d5e3a31af639a5f2573e7c (patch) | |
tree | 968e3bf77065001ade144226f67c54bf1e3d7df5 /setup.sh | |
parent | 5c7cb7bd713df635c921759e32673e2fa4a14592 (diff) | |
download | mlinux-3.2-mtcap-beta.tar.gz mlinux-3.2-mtcap-beta.tar.bz2 mlinux-3.2-mtcap-beta.zip |
mtcap: add support for Conduit Access Point (codename Picocell)3.2-mtcap-beta
Diffstat (limited to 'setup.sh')
-rwxr-xr-x | setup.sh | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -4,8 +4,8 @@ set -e echo "" echo "Setting up git hooks..." -ln -s ../../scripts/git-hooks/pre-commit .git/hooks/pre-commit -ln -s ../../scripts/git-hooks/pre-push .git/hooks/pre-push +ln -s ../../scripts/git-hooks/pre-commit .git/hooks/pre-commit || true +ln -s ../../scripts/git-hooks/pre-push .git/hooks/pre-push || true echo "" echo "Updating git submodules..." @@ -56,3 +56,8 @@ echo "" echo "To build mlinux-base-image:" echo " source env-oe.sh" echo " bitbake mlinux-base-image" +echo "" +echo "To build mlinux-mtcap-image:" +echo " source env-oe.sh" +echo " MACHINE=mtcap bitbake mlinux-mtcap-image" + |