We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The build.sh clones the entire repo and then immediately switches to a single branch: https://github.com/intel/linux-kernel-overlay/blob/02bedab64a4a4e80a524015ab02bf252f2c1068e/build.sh#L57C2-L60
build.sh
This could be streamlined by downloading a single branch, with something like:
git clone $KSRC_REPO --branch $KSRC_UPSTREAM_TAG --single-branch $BUILD_DIR
and remove the push / pop.
This downloads a smaller subset and is much faster.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
build.sh
clones the entire repo and then immediately switches to a single branch:https://github.com/intel/linux-kernel-overlay/blob/02bedab64a4a4e80a524015ab02bf252f2c1068e/build.sh#L57C2-L60
This could be streamlined by downloading a single branch, with something like:
and remove the push / pop.
This downloads a smaller subset and is much faster.
The text was updated successfully, but these errors were encountered: