Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 3cc3198c authored by Robert Nelson's avatar Robert Nelson
Browse files
parent f43f51f4
Branches
Tags
No related merge requests found
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm 3.14.13 Kernel Configuration
# Linux/arm 3.14.15 Kernel Configuration
#
CONFIG_ARM=y
CONFIG_MIGHT_HAVE_PCI=y
......@@ -292,6 +292,7 @@ CONFIG_INLINE_READ_UNLOCK=y
CONFIG_INLINE_READ_UNLOCK_IRQ=y
CONFIG_INLINE_WRITE_UNLOCK=y
CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_MUTEX_SPIN_ON_OWNER=y
CONFIG_FREEZER=y
......@@ -1615,8 +1616,8 @@ CONFIG_OF_MDIO=y
CONFIG_OF_PCI=y
CONFIG_OF_PCI_IRQ=y
CONFIG_OF_MTD=y
CONFIG_PARPORT=m
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
CONFIG_PARPORT=m
# CONFIG_PARPORT_PC is not set
# CONFIG_PARPORT_GSC is not set
# CONFIG_PARPORT_AX88796 is not set
......@@ -2424,7 +2425,9 @@ CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y
# CONFIG_B43LEGACY_PIO_MODE is not set
CONFIG_BRCMUTIL=m
CONFIG_BRCMSMAC=m
# CONFIG_BRCMFMAC is not set
CONFIG_BRCMFMAC=m
CONFIG_BRCMFMAC_SDIO=y
# CONFIG_BRCMFMAC_USB is not set
# CONFIG_BRCM_TRACING is not set
# CONFIG_BRCMDBG is not set
CONFIG_HOSTAP=m
......
......@@ -31,6 +31,7 @@ if [ -e ${DIR}/version.sh ]; then
. ${DIR}/version.sh
cd ${DIR}/KERNEL/
make ARCH=arm distclean
cp ${DIR}/patches/defconfig ${DIR}/KERNEL/arch/arm/configs/bb.org_defconfig
git add arch/arm/configs/bb.org_defconfig
......
......@@ -35,6 +35,7 @@ if [ -e ${DIR}/version.sh ]; then
git push origin ${BRANCH} --tags
cd ${DIR}/KERNEL/
make ARCH=arm distclean
git push -f git@github.com:RobertCNelson/linux-stable-rcn-ee.git "v${KERNEL_TAG}-${BUILD}"
cd ${DIR}/
fi
......
......@@ -114,6 +114,14 @@ git_kernel () {
#Disable git's default setting of running `git gc --auto` in the background as the patch.sh script can fail.
git config --local --list | grep gc.autodetach >/dev/null 2>&1 || git config --local gc.autodetach 0
if [ ! "${git_config_user_email}" ] ; then
git config --local user.email you@example.com
fi
if [ ! "${git_config_user_name}" ] ; then
git config --local user.name "Your Name"
fi
if [ "${RUN_BISECT}" ] ; then
git bisect reset || true
fi
......@@ -166,26 +174,15 @@ git_kernel () {
. ${DIR}/system.sh
unset git_config_user_email
git_config_user_email=$(git config --get user.email || true)
git_config_user_email=$(git config --global --get user.email || true)
if [ ! "${git_config_user_email}" ] ; then
git config --local user.email you@example.com
fi
unset git_config_user_name
git_config_user_name=$(git config --get user.name || true)
if [ ! "${git_config_user_email}" ] || [ ! "${git_config_user_name}" ] ; then
echo "-----------------------------"
echo "Error: git user.name/user.email not set:"
echo ""
echo "For help please read:"
echo "https://help.github.com/articles/setting-your-username-in-git"
echo "https://help.github.com/articles/setting-your-email-in-git"
echo ""
echo "For example, if your real name and email was: Billy Everteen & me@here.com"
echo "you would type the following into the terminal window to set it up:"
echo "-----------------------------"
echo "git config --global user.name \"Billy Everyteen\""
echo "git config --global user.email \"me@here.com\""
echo "-----------------------------"
exit 1
git_config_user_name=$(git config --global --get user.name || true)
if [ ! "${git_config_user_name}" ] ; then
git config --local user.name "Your Name"
fi
torvalds_linux="https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git"
......
......@@ -283,43 +283,44 @@ debian_regs () {
;;
esac
#https://wiki.ubuntu.com/Releases
unset error_unknown_deb_distro
case "${deb_distro}" in
squeeze|wheezy|jessie|sid)
unset warn_eol_distro
;;
utopic)
#14.10
#14.10 (EOL: xyz)
unset warn_eol_distro
;;
trusty)
#14.04: lts: trusty -> xyz
#14.04 (EOL: April 2019) lts: trusty -> xyz
unset warn_eol_distro
;;
saucy)
#13.10
unset warn_eol_distro
;;
quantal|raring)
#12.10|13.04
quantal|raring|saucy)
#12.10 (EOL: May 16, 2014)
#13.04 (EOL: January 27, 2014)
#13.10 (EOL: July 17, 2014)
warn_eol_distro=1
stop_pkg_search=1
;;
precise)
#12.04: lts: precise -> trusty
#12.04 (EOL: April 2017) lts: precise -> trusty
unset warn_eol_distro
;;
maverick|natty|oneiric)
#10.04|10.10|11.04
#10.10 (EOL: April 10, 2012)
#11.04 (EOL: October 28, 2012)
#11.10 (EOL: May 9, 2013)
warn_eol_distro=1
stop_pkg_search=1
;;
lucid)
#10.04: lts: lucid -> precise
#10.04 (EOL: April 2015) lts: lucid -> precise
unset warn_eol_distro
;;
hardy)
#8.04: lts: hardy -> lucid
#8.04 (EOL: May 2013) lts: hardy -> lucid
warn_eol_distro=1
stop_pkg_search=1
;;
......@@ -346,14 +347,14 @@ debian_regs () {
;;
esac
#Libs; starting with jessie/sid/saucy, lib<pkg_name>-dev:<arch>
#Libs; starting with jessie/sid, lib<pkg_name>-dev:<arch>
case "${deb_distro}" in
jessie|sid|saucy|trusty|utopic)
pkg="libncurses5-dev:${deb_arch}"
squeeze|wheezy|lucid|precise)
pkg="libncurses5-dev"
check_dpkg
;;
*)
pkg="libncurses5-dev"
pkg="libncurses5-dev:${deb_arch}"
check_dpkg
;;
esac
......@@ -366,7 +367,7 @@ debian_regs () {
pkg="ia32-libs"
check_dpkg
;;
wheezy|jessie|sid|saucy|trusty|utopic)
*)
pkg="libc6:i386"
check_dpkg
pkg="libncurses5:i386"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment