Skip to content

Commit fac6ab8

Browse files
Steve Mucklepundiramit
Steve Muckle
authored andcommittedOct 15, 2017
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 <[email protected]>
1 parent 22d281f commit fac6ab8

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -112,3 +112,6 @@ all.config
112112

113113
# Kdevelop4
114114
*.kdev4
115+
116+
# fetched Android config fragments
117+
android/configs/android-*.cfg
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
3+
curl https://android.googlesource.com/kernel/configs/+archive/master/android-4.4.tar.gz | tar xzv
4+

0 commit comments

Comments
 (0)
Please sign in to comment.