Skip to content
This repository has been archived by the owner on Sep 27, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'noobs/master' into rb-4.1.X
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalLumberjack committed Aug 23, 2017
2 parents 7c33bb2 + 8a48f59 commit e882f5e
Show file tree
Hide file tree
Showing 64 changed files with 13,549 additions and 1,626 deletions.
4 changes: 2 additions & 2 deletions BUILDME.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ SKIP_KERNEL_REBUILD=0
for i in $*; do
# Update raspberrypi/firmware master HEAD version in package/rpi-firmware/rpi-firmware.mk to latest
if [ $i = "update-firmware" ]; then
update_github_package_version rpi-firmware raspberrypi/firmware master
update_github_package_version rpi-firmware raspberrypi/firmware stable
fi

# Update raspberrypi/userland master HEAD version in package/rpi-userland/rpi-userland.mk to latest
Expand Down Expand Up @@ -175,7 +175,7 @@ touch "$FINAL_OUTPUT_DIR/RECOVERY_FILES_DO_NOT_EDIT"
# Create build-date timestamp file containing Git HEAD info for build
BUILD_INFO="$FINAL_OUTPUT_DIR/BUILD-DATA"
echo "Build-date: $(date +"%Y-%m-%d")" > "$BUILD_INFO"
echo "NOOBS Version: $(git describe)" >> "$BUILD_INFO"
echo "NOOBS Version: $(sed -n 's|.*VERSION_NUMBER.*\"\(.*\)\"|v\1|p' ../recovery/config.h)" >> "$BUILD_INFO"
echo "NOOBS Git HEAD @ $(git rev-parse --verify HEAD)" >> "$BUILD_INFO"
echo "rpi-userland Git master @ $(get_package_version rpi-userland)" >> "$BUILD_INFO"
echo "rpi-firmware Git master @ $(get_package_version rpi-firmware)" >> "$BUILD_INFO"
Expand Down
332 changes: 324 additions & 8 deletions README.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions buildroot/.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Buildroot 2015.02-git-dirty Configuration
# Buildroot 2015.02-git-00025-gb997269-dirty Configuration
#
BR2_HAVE_DOT_CONFIG=y

Expand Down Expand Up @@ -307,9 +307,9 @@ BR2_LINUX_KERNEL_CUSTOM_GIT=y
# BR2_LINUX_KERNEL_CUSTOM_HG is not set
# BR2_LINUX_KERNEL_CUSTOM_LOCAL is not set
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="git://github.com/raspberrypi/linux.git"
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="fa00f31867d8f7b7bb2ad2eb6c35f32fa468ca1e"
BR2_LINUX_KERNEL_VERSION="fa00f31867d8f7b7bb2ad2eb6c35f32fa468ca1e"
BR2_LINUX_KERNEL_PATCH=""
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="e223d71ef728c559aa865d0c5a4cedbdf8789cfd"
BR2_LINUX_KERNEL_VERSION="e223d71ef728c559aa865d0c5a4cedbdf8789cfd"
BR2_LINUX_KERNEL_PATCH="linux-regdb.patch"
# BR2_LINUX_KERNEL_USE_DEFCONFIG is not set
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="kernelconfig-recovery.armv6"
Expand Down Expand Up @@ -1873,7 +1873,7 @@ BR2_PACKAGE_UTIL_LINUX_BINARIES=y
# BR2_PACKAGE_UTIL_LINUX_MINIX is not set
# BR2_PACKAGE_UTIL_LINUX_NSENTER is not set
# BR2_PACKAGE_UTIL_LINUX_MORE is not set
# BR2_PACKAGE_UTIL_LINUX_MOUNT is not set
BR2_PACKAGE_UTIL_LINUX_MOUNT=y
# BR2_PACKAGE_UTIL_LINUX_MOUNTPOINT is not set
# BR2_PACKAGE_UTIL_LINUX_NEWGRP is not set
# BR2_PACKAGE_UTIL_LINUX_NOLOGIN is not set
Expand Down
2 changes: 0 additions & 2 deletions buildroot/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
/.config
*.depend
*.o
/*.patch
/*.diff
*.orig
*.rej
*~
Expand Down
4 changes: 4 additions & 0 deletions buildroot/kernelconfig-recovery.armv6
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ CONFIG_SYN_COOKIES=y
# CONFIG_INET_DIAG is not set
# CONFIG_IPV6 is not set
CONFIG_CFG80211=y
CONFIG_CFG80211_INTERNAL_REGDB=y
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y
Expand Down Expand Up @@ -103,6 +104,9 @@ CONFIG_HID_SUNPLUS=y
CONFIG_USB=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
CONFIG_USB_DWCOTG=y
CONFIG_SCSI=y
CONFIG_BLK_DEV_SD=y
CONFIG_USB_STORAGE=y
CONFIG_MMC=y
CONFIG_MMC_BLOCK_MINORS=32
CONFIG_MMC_BCM2835=y
Expand Down
4 changes: 4 additions & 0 deletions buildroot/kernelconfig-recovery.armv7
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ CONFIG_SYN_COOKIES=y
# CONFIG_INET_DIAG is not set
# CONFIG_IPV6 is not set
CONFIG_CFG80211=y
CONFIG_CFG80211_INTERNAL_REGDB=y
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y
Expand Down Expand Up @@ -109,6 +110,9 @@ CONFIG_HID_SUNPLUS=y
CONFIG_USB=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
CONFIG_USB_DWCOTG=y
CONFIG_SCSI=y
CONFIG_BLK_DEV_SD=y
CONFIG_USB_STORAGE=y
CONFIG_MMC=y
CONFIG_MMC_BLOCK_MINORS=32
CONFIG_MMC_BCM2835=y
Expand Down
Loading

0 comments on commit e882f5e

Please sign in to comment.