kernel26 to 2.6.37-5.3

This commit is contained in:
Kevin Mihelich 2011-02-16 16:19:36 -05:00
parent 24afc697fa
commit dda1b2810a
2 changed files with 18 additions and 10 deletions

View file

@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
# Linux/arm 2.6.37 Kernel Configuration
# Fri Feb 4 11:18:35 2011
# Wed Feb 16 10:19:07 2011
#
CONFIG_ARM=y
CONFIG_SYS_SUPPORTS_APM_EMULATION=y
@ -1533,11 +1533,13 @@ CONFIG_IWLWIFI=m
#
# CONFIG_IWLWIFI_DEBUG is not set
# CONFIG_IWLWIFI_DEVICE_TRACING is not set
# CONFIG_IWLAGN is not set
CONFIG_IWLAGN=m
# CONFIG_IWL4965 is not set
# CONFIG_IWL5000 is not set
CONFIG_IWL3945=m
# CONFIG_IWM is not set
CONFIG_LIBERTAS=m
# CONFIG_LIBERTAS_USB is not set
CONFIG_LIBERTAS_USB=m
CONFIG_LIBERTAS_SDIO=m
CONFIG_LIBERTAS_SPI=m
# CONFIG_LIBERTAS_DEBUG is not set
@ -1658,9 +1660,11 @@ CONFIG_PPPOL2TP=m
# CONFIG_SLIP is not set
CONFIG_SLHC=m
# CONFIG_NET_FC is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
CONFIG_NETCONSOLE=y
CONFIG_NETCONSOLE_DYNAMIC=y
CONFIG_NETPOLL=y
# CONFIG_NETPOLL_TRAP is not set
CONFIG_NET_POLL_CONTROLLER=y
# CONFIG_VMXNET3 is not set
# CONFIG_ISDN is not set
# CONFIG_PHONE is not set
@ -3037,7 +3041,7 @@ CONFIG_SYSFS=y
CONFIG_TMPFS=y
# CONFIG_TMPFS_POSIX_ACL is not set
# CONFIG_HUGETLB_PAGE is not set
# CONFIG_CONFIGFS_FS is not set
CONFIG_CONFIGFS_FS=y
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set

View file

@ -12,7 +12,7 @@ _kernelname=${pkgname#kernel26}
_basekernel=2.6.37
pkgver=${_basekernel}
_pkgrel=5
plugrel=2
plugrel=3
pkgrel="${_pkgrel}.${plugrel}"
makedepends=('xmlto' 'docbook-xsl' 'uboot-mkimage' 'make')
_patchname="patch-${pkgver}-4-ARCH"
@ -31,7 +31,7 @@ source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$_basekernel.tar.bz2
GoFlex-Home.patch)
md5sums=('c8ee37b4fdccdb651e0603d35350b434'
'732176aeb134678b4e369e1d5d5fca2e'
'c36ec5fc8cdc955746f801808c7bfc87'
'8acec4a9e887e9cf279a46ba00e8711a'
'bcdd89efa758a653204458140f3ba1a7'
'25584700a0a679542929c4bed31433b6'
'c9371e30c966c1755edf3e8cc1ab543c')
@ -54,9 +54,13 @@ build() {
# get kernel version
make prepare
# Configure the kernel. Replace the line below with one of your choice.
#make menuconfig # CLI menu for configuration
make menuconfig # CLI menu for configuration
#make nconfig # new CLI menu for configuration
#make oldconfig # using old config from previous kernel version
# Copy back our configuration
cp ./.config ../2.6.37.config
# Build!
make ${MAKEFLAGS} uImage modules
}