File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,13 @@ function update_github_package_version {
48
48
}
49
49
50
50
51
+ function get_kernel_version {
52
+ CONFIG_FILE=.config
53
+ CONFIG_VAR=BR2_LINUX_KERNEL_VERSION
54
+ grep -E " ^$CONFIG_VAR =\" .+\" $" " $CONFIG_FILE " | tr -d ' "' | cut -d= -f2
55
+ }
56
+
57
+
51
58
cd buildroot
52
59
53
60
# WARNING: don't try changing these - you'll break buildroot
@@ -100,6 +107,7 @@ echo "NOOBS Version: $(git describe)" >> "$BUILD_INFO"
100
107
echo " NOOBS Git HEAD @ $( git rev-parse --verify HEAD) " >> " $BUILD_INFO "
101
108
echo " rpi-userland Git master @ $( get_package_version rpi-userland) " >> " $BUILD_INFO "
102
109
echo " rpi-firmware Git master @ $( get_package_version rpi-firmware) " >> " $BUILD_INFO "
110
+ echo " rpi-linux Git rpi-3.6.y @ $( get_kernel_version) " >> " $BUILD_INFO "
103
111
104
112
cd ..
105
113
Original file line number Diff line number Diff line change @@ -1351,8 +1351,8 @@ BR2_LINUX_KERNEL=y
1351
1351
# BR2_LINUX_KERNEL_CUSTOM_TARBALL is not set
1352
1352
BR2_LINUX_KERNEL_CUSTOM_GIT=y
1353
1353
BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="git://github.com/raspberrypi/linux.git"
1354
- BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="rpi-3.6.y "
1355
- BR2_LINUX_KERNEL_VERSION="rpi-3.6.y "
1354
+ BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="2a8d45ec0883e3cbdce920855b3461ac77308a5f "
1355
+ BR2_LINUX_KERNEL_VERSION="2a8d45ec0883e3cbdce920855b3461ac77308a5f "
1356
1356
BR2_LINUX_KERNEL_PATCH="$(TOPDIR)/board/raspberrypi/kernel-patches/"
1357
1357
# BR2_LINUX_KERNEL_USE_DEFCONFIG is not set
1358
1358
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
You can’t perform that action at this time.
0 commit comments