Apparently the install.sh has to be run before build - but as described in #27 it references dead links, so the build fails.
@gilesknap made some patches to fix it, but they are not merged for some reason.
Just in case anyone else bumps into this, here's the steps to solve it:
- retrieve the relevant files from
linux-vendor branch
git checkout linux-vendor -- install.sh vendor/Makefile
- run
install.sh
- build the
vendor dir first (the whole repo can't be built in one go for some reason)
pushd vendor && make && popd
- build the main tree (
make)
To the maintainer: please consider merging the linux-vendor branch.
Apparently the
install.shhas to be run before build - but as described in #27 it references dead links, so the build fails.@gilesknap made some patches to fix it, but they are not merged for some reason.
Just in case anyone else bumps into this, here's the steps to solve it:
linux-vendorbranchgit checkout linux-vendor -- install.sh vendor/Makefileinstall.shvendordir first (the whole repo can't be built in one go for some reason)pushd vendor && make && popdmake)To the maintainer: please consider merging the linux-vendor branch.