ANDROID: add script to fetch android kernel config fragments
The Android kernel config fragments now live in a separate repository. To prevent others from having to search for this location, add a script to fetch and unpack the fragments. Update .gitignore to include these fragments. Change-Id: If2d4a59b86e4573b0a9b3190025dfe4191870b46 Signed-off-by: Steve Muckle <smuckle@google.com>
This commit is contained in:
parent
291d968229
commit
96a28fcc7c
2 changed files with 7 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -114,3 +114,6 @@ all.config
|
||||||
|
|
||||||
# Kdevelop4
|
# Kdevelop4
|
||||||
*.kdev4
|
*.kdev4
|
||||||
|
|
||||||
|
# fetched Android config fragments
|
||||||
|
kernel/configs/android-*.cfg
|
||||||
|
|
4
kernel/configs/android-fetch-configs.sh
Executable file
4
kernel/configs/android-fetch-configs.sh
Executable file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
curl https://android.googlesource.com/kernel/configs/+archive/master/android-4.9.tar.gz | tar xzv
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue