mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-23 09:22:14 +08:00
linux update for move to /usr/lib, mkinitcpio trial to get to /usr/lib, not succesful yet
This commit is contained in:
parent
8dbfbb99f1
commit
f324c831db
@ -1,5 +1,5 @@
|
||||
#
|
||||
# /lib/depmod.d/depmod.conf
|
||||
# /usr/lib/depmod.d/depmod.conf
|
||||
#
|
||||
|
||||
search updates extramodules built-in
|
||||
|
108
linux/PKGBUILD
108
linux/PKGBUILD
@ -8,18 +8,18 @@ pkgbase=linux
|
||||
pkgname=('linux' 'linux-headers' 'linux-docs') # Build stock -CHAKRA kernel
|
||||
# pkgname=linux-custom # Build kernel with a different name
|
||||
_kernelname=${pkgname#linux}
|
||||
_basekernel=3.5
|
||||
pkgver=${_basekernel}.6
|
||||
_basekernel=3.6
|
||||
pkgver=3.6.6
|
||||
pkgrel=1
|
||||
arch=('i686' 'x86_64')
|
||||
arch=('x86_64')
|
||||
url="http://www.kernel.org/"
|
||||
license=('GPL2')
|
||||
makedepends=('xmlto' 'docbook-xsl')
|
||||
options=('!strip')
|
||||
source=("http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.5.tar.xz"
|
||||
source=("http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.6.tar.xz"
|
||||
"http://www.kernel.org/pub/linux/kernel/v3.x/patch-${pkgver}.xz"
|
||||
# the main kernel config files
|
||||
'config' 'config.x86_64'
|
||||
'config.x86_64'
|
||||
#aufs patches
|
||||
'aufs3-loopback.patch'
|
||||
'aufs3-base.patch'
|
||||
@ -30,26 +30,25 @@ source=("http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.5.tar.xz"
|
||||
'aufs3.patch'
|
||||
'config.aufs'
|
||||
# standard config files for mkinitcpio ramdisk
|
||||
"${pkgname}.preset"
|
||||
'linux.preset'
|
||||
'change-default-console-loglevel.patch'
|
||||
'watchdog-3.5.x.patch'
|
||||
'i915-i2c-crash-3.5.x.patch')
|
||||
md5sums=('24153eaaa81dedc9481ada8cd9c3b83d'
|
||||
'e9502f047c251db3b0c911e53344bad5'
|
||||
'9bcefced1f4be50ef2720944f656e5d7'
|
||||
'013e265d1abe67816a36c91e088875ac'
|
||||
'934a8a8b181f97e113a410f616e9f517'
|
||||
'185c6ea92c3f3baf740bea83be443c9e'
|
||||
'99e1c1de3af4fb90c66f9279c206b632'
|
||||
'module-symbol-waiting-3.6.patch'
|
||||
'module-init-wait-3.6.patch')
|
||||
md5sums=('1a1760420eac802c541a20ab51a093d1'
|
||||
'11d6d8749d4612a77f43f0531c0f2824'
|
||||
'8aeb4b852fdaa3cc013784aa73537a9a'
|
||||
'360b92a032eb7611583956314636d30f'
|
||||
'a0b105ee94cbb37a9bfb9d565ad92edf'
|
||||
'41bd3b4e3d69d5ca030927e409278011'
|
||||
'9dc1aa9fcc12b3c2f52f605830c02939'
|
||||
'62691fb5a20d3d28a73ec0640e9c7b3c'
|
||||
'a9e4407bf818e4a379b884e03362522b'
|
||||
'77894d0a8fce44e26728be3f079ed668'
|
||||
'388890521b4f06820377f0ad7ab42d5a'
|
||||
'7fa97ab324207992081aa5967ad6eed3'
|
||||
'9ca80ba287ad2f0d5e59c0098a8de1ac'
|
||||
'52f4a2c7f6277774117c834d949d6b81'
|
||||
'eb14dcfd80c00852ef81ded6e826826a'
|
||||
'65cbe8e4c8efaf96dd162102e46ce81d'
|
||||
'ae13ed1e92bba07e9b17cf5c8d89683c'
|
||||
'ff4a203dd52e4dfb5d60948bb667d06d')
|
||||
'670931649c60fcb3ef2e0119ed532bd4'
|
||||
'8a71abc4224f575008f974a099b5cf6f')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/linux-${_basekernel}"
|
||||
@ -60,13 +59,9 @@ build() {
|
||||
# add latest fixes from stable queue, if needed
|
||||
# http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
|
||||
|
||||
# Broken watchdog
|
||||
# https://bugzilla.kernel.org/show_bug.cgi?id=44991
|
||||
patch -p1 -i "${srcdir}/watchdog-3.5.x.patch"
|
||||
|
||||
# i915 i2c crash
|
||||
# https://bugzilla.kernel.org/show_bug.cgi?id=46381
|
||||
patch -p1 -i "${srcdir}/i915-i2c-crash-3.5.x.patch"
|
||||
# fix module initialisation
|
||||
patch -p1 -i "${srcdir}/module-symbol-waiting-3.6.patch"
|
||||
patch -p1 -i "${srcdir}/module-init-wait-3.6.patch"
|
||||
|
||||
# set DEFAULT_CONSOLE_LOGLEVEL to 4 (same value as the 'quiet' kernel param)
|
||||
# remove this when a Kconfig knob is made available by upstream
|
||||
@ -82,21 +77,20 @@ build() {
|
||||
#patch -p1 -i "${srcdir}/aufs3-fix-export-__devcgroup_inode_permission.patch"
|
||||
patch -p1 -i "${srcdir}/aufs3-standalone.patch"
|
||||
|
||||
cat "${srcdir}/config.x86_64" > ./.config
|
||||
|
||||
if [ "${CARCH}" = "x86_64" ]; then
|
||||
cat "${srcdir}/config.x86_64" > ./.config
|
||||
else
|
||||
cat "${srcdir}/config" > ./.config
|
||||
fi
|
||||
|
||||
cat "${srcdir}/config.aufs" >> ./.config
|
||||
cat "${srcdir}/config.aufs" >> ./.config
|
||||
|
||||
if [ "${_kernelname}" != "" ]; then
|
||||
sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"${_kernelname}\"|g" ./.config
|
||||
sed -i "s|CONFIG_LOCALVERSION_AUTO=.*|CONFIG_LOCALVERSION_AUTO=n|" ./.config
|
||||
fi
|
||||
|
||||
# set extraversion to pkgrel
|
||||
sed -ri "s|^(EXTRAVERSION =).*|\1 -${pkgrel}|" Makefile
|
||||
|
||||
# don't run depmod on 'make install'. We'll do this ourselves in packaging
|
||||
sed -i '2iexit 0' scripts/depmod.sh
|
||||
|
||||
# get kernel version
|
||||
make prepare
|
||||
@ -108,6 +102,9 @@ build() {
|
||||
#make xconfig # X-based configuration
|
||||
#make oldconfig # using old config from previous kernel version
|
||||
# ... or manually edit .config
|
||||
|
||||
# rewrite configuration
|
||||
yes "" | make config >/dev/null
|
||||
|
||||
####################
|
||||
# stop here
|
||||
@ -116,10 +113,8 @@ build() {
|
||||
#return 1
|
||||
####################
|
||||
|
||||
yes "" | make config
|
||||
|
||||
# build!
|
||||
make ${MAKEFLAGS} bzImage modules
|
||||
make ${MAKEFLAGS} LOCALVERSION= bzImage modules
|
||||
}
|
||||
|
||||
package_linux() {
|
||||
@ -131,35 +126,36 @@ package_linux() {
|
||||
conflicts=('kernel26' 'nvidia-96xx=96.43.20-9' 'acerhk')
|
||||
replaces=('kernel26' 'aufs3' 'nouveau-drm')
|
||||
backup=("etc/mkinitcpio.d/${pkgname}.preset")
|
||||
install=${pkgname}.install
|
||||
install=linux.install
|
||||
|
||||
cd "${srcdir}/linux-${_basekernel}"
|
||||
|
||||
KARCH=x86
|
||||
|
||||
# get kernel version
|
||||
_kernver="$(make kernelrelease)"
|
||||
_kernver="$(make LOCALVERSION= kernelrelease)"
|
||||
|
||||
mkdir -p "${pkgdir}"/{lib/modules,lib/firmware,boot}
|
||||
make INSTALL_MOD_PATH="${pkgdir}" modules_install
|
||||
make LOCALVERSION= INSTALL_MOD_PATH="${pkgdir}" modules_install
|
||||
cp arch/$KARCH/boot/bzImage "${pkgdir}/boot/vmlinuz-${pkgname}"
|
||||
|
||||
# add vmlinux
|
||||
install -D -m644 vmlinux "${pkgdir}/usr/src/linux-${_kernver}/vmlinux"
|
||||
|
||||
# install fallback mkinitcpio.conf file and preset file for kernel
|
||||
install -D -m644 "${srcdir}/${pkgname}.preset" "${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset"
|
||||
install -D -m644 "${srcdir}/linux.preset" "${pkgdir}/etc/mkinitcpio.d/linux.preset"
|
||||
|
||||
# set correct depmod command for install
|
||||
sed \
|
||||
-e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/g" \
|
||||
-e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" \
|
||||
-i "${startdir}/${pkgname}.install"
|
||||
-e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/" \
|
||||
-e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/" \
|
||||
-i "${startdir}/linux.install"
|
||||
sed \
|
||||
-e "s|ALL_kver=.*|ALL_kver=\"/boot/vmlinuz-${pkgname}\"|g" \
|
||||
-e "s|default_image=.*|default_image=\"/boot/initramfs-${pkgname}.img\"|g" \
|
||||
-e "s|fallback_image=.*|fallback_image=\"/boot/initramfs-${pkgname}-fallback.img\"|g" \
|
||||
-i "${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset"
|
||||
-e "1s|'linux.*'|'${pkgname}'|" \
|
||||
-e "s|ALL_kver=.*|ALL_kver=\"/boot/vmlinuz-${pkgname}\"|" \
|
||||
-e "s|default_image=.*|default_image=\"/boot/initramfs-${pkgname}.img\"|" \
|
||||
-e "s|fallback_image=.*|fallback_image=\"/boot/initramfs-${pkgname}-fallback.img\"|" \
|
||||
-i "${pkgdir}/etc/mkinitcpio.d/linux.preset"
|
||||
|
||||
# remove build and source links
|
||||
rm -f "${pkgdir}"/lib/modules/${_kernver}/{source,build}
|
||||
@ -172,6 +168,12 @@ package_linux() {
|
||||
# add real version for building modules and running depmod from post_install/upgrade
|
||||
mkdir -p "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--CHAKRA}"
|
||||
echo "${_kernver}" > "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--CHAKRA}/version"
|
||||
|
||||
# Call depmod...
|
||||
depmod -b "$pkgdir" -F System.map "$_kernver"
|
||||
|
||||
# Move module /lib -> /usr/lib
|
||||
mv "$pkgdir/lib" "$pkgdir/usr"
|
||||
}
|
||||
|
||||
package_linux-headers() {
|
||||
@ -180,10 +182,10 @@ package_linux-headers() {
|
||||
conflicts=('kernel26-headers')
|
||||
replaces=('kernel26-headers')
|
||||
|
||||
mkdir -p "${pkgdir}/lib/modules/${_kernver}"
|
||||
install -dm755 "${pkgdir}/usr/lib/modules/${_kernver}"
|
||||
|
||||
cd "${pkgdir}/lib/modules/${_kernver}"
|
||||
ln -sf ../../../usr/src/linux-${_kernver} build
|
||||
cd "${pkgdir}/usr/lib/modules/${_kernver}"
|
||||
ln -sf ../../../src/linux-${_kernver} build
|
||||
|
||||
cd "${srcdir}/linux-${_basekernel}"
|
||||
install -D -m644 Makefile \
|
||||
@ -216,10 +218,6 @@ package_linux-headers() {
|
||||
|
||||
cp arch/${KARCH}/Makefile "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/"
|
||||
|
||||
if [ "${CARCH}" = "i686" ]; then
|
||||
cp arch/${KARCH}/Makefile_32.cpu "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/"
|
||||
fi
|
||||
|
||||
cp arch/${KARCH}/kernel/asm-offsets.s "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/kernel/"
|
||||
|
||||
# add headers for lirc package
|
||||
|
@ -1,7 +1,7 @@
|
||||
aufs3.5 base patch
|
||||
aufs3.6 base patch
|
||||
|
||||
diff --git a/fs/inode.c b/fs/inode.c
|
||||
index c99163b..7f772fd 100644
|
||||
index ac8d904..7b2c8fa 100644
|
||||
--- a/fs/inode.c
|
||||
+++ b/fs/inode.c
|
||||
@@ -1491,7 +1491,7 @@ static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
|
||||
@ -13,24 +13,11 @@ index c99163b..7f772fd 100644
|
||||
{
|
||||
if (inode->i_op->update_time)
|
||||
return inode->i_op->update_time(inode, time, flags);
|
||||
diff --git a/fs/namei.c b/fs/namei.c
|
||||
index 7d69419..18c9782 100644
|
||||
--- a/fs/namei.c
|
||||
+++ b/fs/namei.c
|
||||
@@ -1864,7 +1864,7 @@ int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
|
||||
* needs parent already locked. Doesn't follow mounts.
|
||||
* SMP-safe.
|
||||
*/
|
||||
-static struct dentry *lookup_hash(struct nameidata *nd)
|
||||
+struct dentry *lookup_hash(struct nameidata *nd)
|
||||
{
|
||||
return __lookup_hash(&nd->last, nd->path.dentry, nd);
|
||||
}
|
||||
diff --git a/fs/splice.c b/fs/splice.c
|
||||
index 7bf08fa..e3c40b5 100644
|
||||
index 41514dd..663b402 100644
|
||||
--- a/fs/splice.c
|
||||
+++ b/fs/splice.c
|
||||
@@ -1090,8 +1090,8 @@ EXPORT_SYMBOL(generic_splice_sendpage);
|
||||
@@ -1093,8 +1093,8 @@ EXPORT_SYMBOL(generic_splice_sendpage);
|
||||
/*
|
||||
* Attempt to initiate a splice from pipe to file.
|
||||
*/
|
||||
@ -41,7 +28,7 @@ index 7bf08fa..e3c40b5 100644
|
||||
{
|
||||
ssize_t (*splice_write)(struct pipe_inode_info *, struct file *,
|
||||
loff_t *, size_t, unsigned int);
|
||||
@@ -1118,9 +1118,9 @@ static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
|
||||
@@ -1121,9 +1121,9 @@ static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
|
||||
/*
|
||||
* Attempt to initiate a splice from a file to a pipe.
|
||||
*/
|
||||
@ -55,10 +42,10 @@ index 7bf08fa..e3c40b5 100644
|
||||
ssize_t (*splice_read)(struct file *, loff_t *,
|
||||
struct pipe_inode_info *, size_t, unsigned int);
|
||||
diff --git a/include/linux/fs.h b/include/linux/fs.h
|
||||
index 17fd887..9c75a47 100644
|
||||
index aa11047..9116d2e 100644
|
||||
--- a/include/linux/fs.h
|
||||
+++ b/include/linux/fs.h
|
||||
@@ -2591,6 +2591,7 @@ extern int inode_change_ok(const struct inode *, struct iattr *);
|
||||
@@ -2741,6 +2741,7 @@ extern int inode_change_ok(const struct inode *, struct iattr *);
|
||||
extern int inode_newsize_ok(const struct inode *, loff_t offset);
|
||||
extern void setattr_copy(struct inode *inode, const struct iattr *attr);
|
||||
|
||||
@ -66,18 +53,6 @@ index 17fd887..9c75a47 100644
|
||||
extern int file_update_time(struct file *file);
|
||||
|
||||
extern int generic_show_options(struct seq_file *m, struct dentry *root);
|
||||
diff --git a/include/linux/namei.h b/include/linux/namei.h
|
||||
index ffc0213..ef35a31 100644
|
||||
--- a/include/linux/namei.h
|
||||
+++ b/include/linux/namei.h
|
||||
@@ -85,6 +85,7 @@ extern int vfs_path_lookup(struct dentry *, struct vfsmount *,
|
||||
extern struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry,
|
||||
int (*open)(struct inode *, struct file *));
|
||||
|
||||
+extern struct dentry *lookup_hash(struct nameidata *nd);
|
||||
extern struct dentry *lookup_one_len(const char *, struct dentry *, int);
|
||||
|
||||
extern int follow_down_one(struct path *);
|
||||
diff --git a/include/linux/splice.h b/include/linux/splice.h
|
||||
index 09a545a..1ac5727 100644
|
||||
--- a/include/linux/splice.h
|
||||
|
@ -1,4 +1,4 @@
|
||||
aufs3.5 kbuild patch
|
||||
aufs3.6 kbuild patch
|
||||
|
||||
diff --git a/fs/Kconfig b/fs/Kconfig
|
||||
index f95ae3a..6d8a9a5 100644
|
||||
@ -22,7 +22,7 @@ index 2fb9779..abefac5 100644
|
||||
obj-$(CONFIG_PSTORE) += pstore/
|
||||
+obj-$(CONFIG_AUFS_FS) += aufs/
|
||||
diff --git a/include/linux/Kbuild b/include/linux/Kbuild
|
||||
index 8760be3..a1b8446 100644
|
||||
index fa21760..ee029e3 100644
|
||||
--- a/include/linux/Kbuild
|
||||
+++ b/include/linux/Kbuild
|
||||
@@ -66,6 +66,7 @@ header-y += atmppp.h
|
||||
|
@ -1,4 +1,4 @@
|
||||
aufs3.5 loopback patch
|
||||
aufs3.6 loopback patch
|
||||
|
||||
diff --git a/drivers/block/loop.c b/drivers/block/loop.c
|
||||
index 3bba655..bc9351f 100644
|
||||
@ -183,10 +183,10 @@ index 3bba655..bc9351f 100644
|
||||
}
|
||||
|
||||
diff --git a/fs/aufs/f_op.c b/fs/aufs/f_op.c
|
||||
index 9abe766..03ea4d4 100644
|
||||
index 896f3e7..40d875e 100644
|
||||
--- a/fs/aufs/f_op.c
|
||||
+++ b/fs/aufs/f_op.c
|
||||
@@ -355,7 +355,7 @@ static ssize_t aufs_splice_read(struct file *file, loff_t *ppos,
|
||||
@@ -352,7 +352,7 @@ static ssize_t aufs_splice_read(struct file *file, loff_t *ppos,
|
||||
err = -EINVAL;
|
||||
h_file = au_hf_top(file);
|
||||
get_file(h_file);
|
||||
@ -242,7 +242,7 @@ index b7af6a7..7a50e6e 100644
|
||||
|
||||
#endif /* __KERNEL__ */
|
||||
diff --git a/fs/aufs/super.c b/fs/aufs/super.c
|
||||
index 53ad4c2..aeca21f 100644
|
||||
index ccf9ac7..36c4c02 100644
|
||||
--- a/fs/aufs/super.c
|
||||
+++ b/fs/aufs/super.c
|
||||
@@ -780,7 +780,10 @@ static const struct super_operations aufs_sop = {
|
||||
@ -258,10 +258,10 @@ index 53ad4c2..aeca21f 100644
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
diff --git a/include/linux/fs.h b/include/linux/fs.h
|
||||
index 9c75a47..3c0e3ff 100644
|
||||
index 9116d2e..02ef853 100644
|
||||
--- a/include/linux/fs.h
|
||||
+++ b/include/linux/fs.h
|
||||
@@ -1737,6 +1737,10 @@ struct super_operations {
|
||||
@@ -1878,6 +1878,10 @@ struct super_operations {
|
||||
int (*bdev_try_to_free_page)(struct super_block*, struct page*, gfp_t);
|
||||
int (*nr_cached_objects)(struct super_block *);
|
||||
void (*free_cached_objects)(struct super_block *, int);
|
||||
|
@ -1,5 +1,18 @@
|
||||
aufs3.5 proc_map patch
|
||||
aufs3.6 proc_map patch
|
||||
|
||||
diff --git a/fs/buffer.c b/fs/buffer.c
|
||||
index 58e2e7b..f314bc2 100644
|
||||
--- a/fs/buffer.c
|
||||
+++ b/fs/buffer.c
|
||||
@@ -2317,6 +2317,8 @@ int __block_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf,
|
||||
* fault so this update may be superfluous but who really cares...
|
||||
*/
|
||||
file_update_time(vma->vm_file);
|
||||
+ if (vma->vm_prfile)
|
||||
+ file_update_time(vma->vm_prfile);
|
||||
|
||||
lock_page(page);
|
||||
size = i_size_read(inode);
|
||||
diff --git a/fs/proc/nommu.c b/fs/proc/nommu.c
|
||||
index b1822dd..8b29ab7 100644
|
||||
--- a/fs/proc/nommu.c
|
||||
@ -55,10 +68,10 @@ index 1ccfa53..c39acb5 100644
|
||||
ino = inode->i_ino;
|
||||
pgoff = (loff_t)vma->vm_pgoff << PAGE_SHIFT;
|
||||
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
|
||||
index 704a626..a8c9afa 100644
|
||||
index bf78672..cac65b6 100644
|
||||
--- a/include/linux/mm_types.h
|
||||
+++ b/include/linux/mm_types.h
|
||||
@@ -196,6 +196,7 @@ struct vm_region {
|
||||
@@ -212,6 +212,7 @@ struct vm_region {
|
||||
unsigned long vm_top; /* region allocated to here */
|
||||
unsigned long vm_pgoff; /* the offset in vm_file corresponding to vm_start */
|
||||
struct file *vm_file; /* the backing file or NULL */
|
||||
@ -66,7 +79,7 @@ index 704a626..a8c9afa 100644
|
||||
|
||||
int vm_usage; /* region usage count (access under nommu_region_sem) */
|
||||
bool vm_icache_flushed : 1; /* true if the icache has been flushed for
|
||||
@@ -255,6 +256,7 @@ struct vm_area_struct {
|
||||
@@ -271,6 +272,7 @@ struct vm_area_struct {
|
||||
unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE
|
||||
units, *not* PAGE_CACHE_SIZE */
|
||||
struct file * vm_file; /* File we map to (can be NULL). */
|
||||
@ -75,10 +88,10 @@ index 704a626..a8c9afa 100644
|
||||
|
||||
#ifndef CONFIG_MMU
|
||||
diff --git a/kernel/fork.c b/kernel/fork.c
|
||||
index f00e319..df4b0fd 100644
|
||||
index 2c8857e..3709356 100644
|
||||
--- a/kernel/fork.c
|
||||
+++ b/kernel/fork.c
|
||||
@@ -418,6 +418,8 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
|
||||
@@ -414,6 +414,8 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
|
||||
struct address_space *mapping = file->f_mapping;
|
||||
|
||||
get_file(file);
|
||||
@ -88,29 +101,20 @@ index f00e319..df4b0fd 100644
|
||||
atomic_dec(&inode->i_writecount);
|
||||
mutex_lock(&mapping->i_mmap_mutex);
|
||||
diff --git a/mm/memory.c b/mm/memory.c
|
||||
index 2466d12..906bc23 100644
|
||||
index 5736170..908963f 100644
|
||||
--- a/mm/memory.c
|
||||
+++ b/mm/memory.c
|
||||
@@ -2658,6 +2658,8 @@ reuse:
|
||||
@@ -3355,6 +3355,8 @@ static int __do_fault(struct mm_struct *mm, struct vm_area_struct *vma,
|
||||
/* file_update_time outside page_lock */
|
||||
if (vma->vm_file)
|
||||
if (vma->vm_file && !page_mkwrite)
|
||||
file_update_time(vma->vm_file);
|
||||
+ if (vma->vm_prfile)
|
||||
+ file_update_time(vma->vm_prfile);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@@ -3343,6 +3345,8 @@ static int __do_fault(struct mm_struct *mm, struct vm_area_struct *vma,
|
||||
/* file_update_time outside page_lock */
|
||||
if (vma->vm_file)
|
||||
file_update_time(vma->vm_file);
|
||||
+ if (vma->vm_prfile)
|
||||
+ if (vma->vm_prfile && !page_mkwrite)
|
||||
+ file_update_time(vma->vm_prfile);
|
||||
} else {
|
||||
unlock_page(vmf.page);
|
||||
if (anon)
|
||||
diff --git a/mm/mmap.c b/mm/mmap.c
|
||||
index 3edfcdf..ad8b120 100644
|
||||
index ae18a48..ab6498a 100644
|
||||
--- a/mm/mmap.c
|
||||
+++ b/mm/mmap.c
|
||||
@@ -233,6 +233,8 @@ static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
|
||||
@ -131,7 +135,7 @@ index 3edfcdf..ad8b120 100644
|
||||
if (next->vm_flags & VM_EXECUTABLE)
|
||||
removed_exe_file_vma(mm);
|
||||
}
|
||||
@@ -1993,6 +1997,8 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
|
||||
@@ -1991,6 +1995,8 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
|
||||
|
||||
if (new->vm_file) {
|
||||
get_file(new->vm_file);
|
||||
@ -140,7 +144,7 @@ index 3edfcdf..ad8b120 100644
|
||||
if (vma->vm_flags & VM_EXECUTABLE)
|
||||
added_exe_file_vma(mm);
|
||||
}
|
||||
@@ -2017,6 +2023,8 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
|
||||
@@ -2015,6 +2021,8 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
|
||||
if (vma->vm_flags & VM_EXECUTABLE)
|
||||
removed_exe_file_vma(mm);
|
||||
fput(new->vm_file);
|
||||
@ -149,15 +153,15 @@ index 3edfcdf..ad8b120 100644
|
||||
}
|
||||
unlink_anon_vmas(new);
|
||||
out_free_mpol:
|
||||
@@ -2417,6 +2425,8 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
|
||||
@@ -2412,6 +2420,8 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
|
||||
new_vma->vm_pgoff = pgoff;
|
||||
if (new_vma->vm_file) {
|
||||
get_file(new_vma->vm_file);
|
||||
+ if (new_vma->vm_prfile)
|
||||
+ get_file(new_vma->vm_prfile);
|
||||
|
||||
if (uprobe_mmap(new_vma))
|
||||
goto out_free_mempol;
|
||||
if (vma->vm_flags & VM_EXECUTABLE)
|
||||
added_exe_file_vma(mm);
|
||||
diff --git a/mm/nommu.c b/mm/nommu.c
|
||||
index d4b0c10..a061091 100644
|
||||
--- a/mm/nommu.c
|
||||
|
@ -1,10 +1,10 @@
|
||||
aufs3.5 standalone patch
|
||||
aufs3.6 standalone patch
|
||||
|
||||
diff --git a/fs/file_table.c b/fs/file_table.c
|
||||
index a305d9e..6a768be 100644
|
||||
index 701985e..a9fe741 100644
|
||||
--- a/fs/file_table.c
|
||||
+++ b/fs/file_table.c
|
||||
@@ -35,6 +35,7 @@ struct files_stat_struct files_stat = {
|
||||
@@ -37,6 +37,7 @@ struct files_stat_struct files_stat = {
|
||||
};
|
||||
|
||||
DEFINE_LGLOCK(files_lglock);
|
||||
@ -12,7 +12,7 @@ index a305d9e..6a768be 100644
|
||||
|
||||
/* SLAB cache for file structures */
|
||||
static struct kmem_cache *filp_cachep __read_mostly;
|
||||
@@ -441,6 +442,8 @@ void file_sb_list_del(struct file *file)
|
||||
@@ -509,6 +510,8 @@ void file_sb_list_del(struct file *file)
|
||||
}
|
||||
}
|
||||
|
||||
@ -22,7 +22,7 @@ index a305d9e..6a768be 100644
|
||||
|
||||
/*
|
||||
diff --git a/fs/inode.c b/fs/inode.c
|
||||
index 7f772fd..e789d2f 100644
|
||||
index 7b2c8fa..0c4318d 100644
|
||||
--- a/fs/inode.c
|
||||
+++ b/fs/inode.c
|
||||
@@ -56,6 +56,7 @@ static struct hlist_head *inode_hashtable __read_mostly;
|
||||
@ -41,20 +41,8 @@ index 7f772fd..e789d2f 100644
|
||||
|
||||
/**
|
||||
* touch_atime - update the access time
|
||||
diff --git a/fs/namei.c b/fs/namei.c
|
||||
index 18c9782..f09edf3 100644
|
||||
--- a/fs/namei.c
|
||||
+++ b/fs/namei.c
|
||||
@@ -1868,6 +1868,7 @@ struct dentry *lookup_hash(struct nameidata *nd)
|
||||
{
|
||||
return __lookup_hash(&nd->last, nd->path.dentry, nd);
|
||||
}
|
||||
+EXPORT_SYMBOL_GPL(lookup_hash);
|
||||
|
||||
/**
|
||||
* lookup_one_len - filesystem helper to lookup single pathname component
|
||||
diff --git a/fs/namespace.c b/fs/namespace.c
|
||||
index 1e4a5fe..06aa768 100644
|
||||
index 7bdf790..5b85c4c 100644
|
||||
--- a/fs/namespace.c
|
||||
+++ b/fs/namespace.c
|
||||
@@ -50,6 +50,7 @@ EXPORT_SYMBOL_GPL(fs_kobj);
|
||||
@ -65,7 +53,7 @@ index 1e4a5fe..06aa768 100644
|
||||
|
||||
static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
|
||||
{
|
||||
@@ -1341,6 +1342,7 @@ int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
|
||||
@@ -1401,6 +1402,7 @@ int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@ -135,7 +123,7 @@ index f104d56..54f36db 100644
|
||||
static int fsnotify_mark_destroy(void *ignored)
|
||||
{
|
||||
diff --git a/fs/open.c b/fs/open.c
|
||||
index 1540632..2463289 100644
|
||||
index e1f2cdb..2804cd6 100644
|
||||
--- a/fs/open.c
|
||||
+++ b/fs/open.c
|
||||
@@ -60,6 +60,7 @@ int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
|
||||
@ -147,10 +135,10 @@ index 1540632..2463289 100644
|
||||
static long do_sys_truncate(const char __user *pathname, loff_t length)
|
||||
{
|
||||
diff --git a/fs/splice.c b/fs/splice.c
|
||||
index e3c40b5..3afc547 100644
|
||||
index 663b402..51e1deb 100644
|
||||
--- a/fs/splice.c
|
||||
+++ b/fs/splice.c
|
||||
@@ -1114,6 +1114,7 @@ long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
|
||||
@@ -1117,6 +1117,7 @@ long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
|
||||
|
||||
return splice_write(pipe, out, ppos, len, flags);
|
||||
}
|
||||
@ -158,7 +146,7 @@ index e3c40b5..3afc547 100644
|
||||
|
||||
/*
|
||||
* Attempt to initiate a splice from a file to a pipe.
|
||||
@@ -1140,6 +1141,7 @@ long do_splice_to(struct file *in, loff_t *ppos,
|
||||
@@ -1143,6 +1144,7 @@ long do_splice_to(struct file *in, loff_t *ppos,
|
||||
|
||||
return splice_read(in, ppos, pipe, len, flags);
|
||||
}
|
||||
|
8142
linux/aufs3.patch
8142
linux/aufs3.patch
File diff suppressed because it is too large
Load Diff
5839
linux/config
5839
linux/config
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86_64 3.5.4-1 Kernel Configuration
|
||||
# Linux/x86_64 3.6.6 Kernel Configuration
|
||||
#
|
||||
CONFIG_64BIT=y
|
||||
# CONFIG_X86_32 is not set
|
||||
@ -136,10 +136,11 @@ CONFIG_CPUSETS=y
|
||||
CONFIG_PROC_PID_CPUSET=y
|
||||
CONFIG_CGROUP_CPUACCT=y
|
||||
CONFIG_RESOURCE_COUNTERS=y
|
||||
CONFIG_CGROUP_MEM_RES_CTLR=y
|
||||
CONFIG_CGROUP_MEM_RES_CTLR_SWAP=y
|
||||
# CONFIG_CGROUP_MEM_RES_CTLR_SWAP_ENABLED is not set
|
||||
CONFIG_CGROUP_MEM_RES_CTLR_KMEM=y
|
||||
CONFIG_MEMCG=y
|
||||
CONFIG_MEMCG_SWAP=y
|
||||
# CONFIG_MEMCG_SWAP_ENABLED is not set
|
||||
CONFIG_MEMCG_KMEM=y
|
||||
# CONFIG_CGROUP_HUGETLB is not set
|
||||
# CONFIG_CGROUP_PERF is not set
|
||||
CONFIG_CGROUP_SCHED=y
|
||||
CONFIG_FAIR_GROUP_SCHED=y
|
||||
@ -154,7 +155,6 @@ CONFIG_IPC_NS=y
|
||||
CONFIG_PID_NS=y
|
||||
CONFIG_NET_NS=y
|
||||
CONFIG_SCHED_AUTOGROUP=y
|
||||
CONFIG_MM_OWNER=y
|
||||
# CONFIG_SYSFS_DEPRECATED is not set
|
||||
CONFIG_RELAY=y
|
||||
CONFIG_BLK_DEV_INITRD=y
|
||||
@ -231,6 +231,7 @@ CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
|
||||
CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
|
||||
CONFIG_HAVE_CMPXCHG_LOCAL=y
|
||||
CONFIG_HAVE_CMPXCHG_DOUBLE=y
|
||||
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
|
||||
CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
|
||||
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
|
||||
CONFIG_SECCOMP_FILTER=y
|
||||
@ -429,6 +430,7 @@ CONFIG_SPARSEMEM_VMEMMAP=y
|
||||
CONFIG_HAVE_MEMBLOCK=y
|
||||
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
|
||||
CONFIG_ARCH_DISCARD_MEMBLOCK=y
|
||||
CONFIG_MEMORY_ISOLATION=y
|
||||
CONFIG_MEMORY_HOTPLUG=y
|
||||
CONFIG_MEMORY_HOTPLUG_SPARSE=y
|
||||
CONFIG_MEMORY_HOTREMOVE=y
|
||||
@ -505,7 +507,7 @@ CONFIG_PM=y
|
||||
CONFIG_PM_DEBUG=y
|
||||
CONFIG_PM_ADVANCED_DEBUG=y
|
||||
# CONFIG_PM_TEST_SUSPEND is not set
|
||||
CONFIG_CAN_PM_TRACE=y
|
||||
CONFIG_PM_SLEEP_DEBUG=y
|
||||
# CONFIG_PM_TRACE_RTC is not set
|
||||
CONFIG_ACPI=y
|
||||
CONFIG_ACPI_SLEEP=y
|
||||
@ -577,6 +579,7 @@ CONFIG_X86_SPEEDSTEP_LIB=m
|
||||
CONFIG_CPU_IDLE=y
|
||||
CONFIG_CPU_IDLE_GOV_LADDER=y
|
||||
CONFIG_CPU_IDLE_GOV_MENU=y
|
||||
# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
|
||||
CONFIG_INTEL_IDLE=y
|
||||
|
||||
#
|
||||
@ -712,6 +715,7 @@ CONFIG_IP_PIMSM_V1=y
|
||||
CONFIG_IP_PIMSM_V2=y
|
||||
# CONFIG_ARPD is not set
|
||||
CONFIG_SYN_COOKIES=y
|
||||
CONFIG_NET_IPVTI=m
|
||||
CONFIG_INET_AH=m
|
||||
CONFIG_INET_ESP=m
|
||||
CONFIG_INET_IPCOMP=m
|
||||
@ -803,6 +807,8 @@ CONFIG_NF_CONNTRACK_SIP=m
|
||||
CONFIG_NF_CONNTRACK_TFTP=m
|
||||
CONFIG_NF_CT_NETLINK=m
|
||||
CONFIG_NF_CT_NETLINK_TIMEOUT=m
|
||||
CONFIG_NF_CT_NETLINK_HELPER=m
|
||||
CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
|
||||
CONFIG_NETFILTER_TPROXY=m
|
||||
CONFIG_NETFILTER_XTABLES=m
|
||||
|
||||
@ -1255,6 +1261,7 @@ CONFIG_BT_HCIUART_H4=y
|
||||
CONFIG_BT_HCIUART_BCSP=y
|
||||
CONFIG_BT_HCIUART_ATH3K=y
|
||||
CONFIG_BT_HCIUART_LL=y
|
||||
CONFIG_BT_HCIUART_3WIRE=y
|
||||
CONFIG_BT_HCIBCM203X=m
|
||||
CONFIG_BT_HCIBPA10X=m
|
||||
CONFIG_BT_HCIBFUSB=m
|
||||
@ -1278,14 +1285,13 @@ CONFIG_WEXT_PROC=y
|
||||
CONFIG_WEXT_SPY=y
|
||||
CONFIG_WEXT_PRIV=y
|
||||
CONFIG_CFG80211=m
|
||||
CONFIG_NL80211_TESTMODE=y
|
||||
# CONFIG_NL80211_TESTMODE is not set
|
||||
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
|
||||
# CONFIG_CFG80211_REG_DEBUG is not set
|
||||
CONFIG_CFG80211_DEFAULT_PS=y
|
||||
# CONFIG_CFG80211_DEBUGFS is not set
|
||||
# CONFIG_CFG80211_INTERNAL_REGDB is not set
|
||||
CONFIG_CFG80211_WEXT=y
|
||||
CONFIG_WIRELESS_EXT_SYSFS=y
|
||||
CONFIG_LIB80211=m
|
||||
CONFIG_LIB80211_CRYPT_WEP=m
|
||||
CONFIG_LIB80211_CRYPT_CCMP=m
|
||||
@ -1300,6 +1306,7 @@ CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
|
||||
CONFIG_MAC80211_MESH=y
|
||||
CONFIG_MAC80211_LEDS=y
|
||||
# CONFIG_MAC80211_DEBUGFS is not set
|
||||
# CONFIG_MAC80211_MESSAGE_TRACING is not set
|
||||
# CONFIG_MAC80211_DEBUG_MENU is not set
|
||||
CONFIG_WIMAX=m
|
||||
CONFIG_WIMAX_DEBUG_LEVEL=8
|
||||
@ -1351,6 +1358,7 @@ CONFIG_SYS_HYPERVISOR=y
|
||||
# CONFIG_GENERIC_CPU_DEVICES is not set
|
||||
CONFIG_REGMAP=y
|
||||
CONFIG_REGMAP_I2C=m
|
||||
CONFIG_REGMAP_IRQ=y
|
||||
CONFIG_DMA_SHARED_BUFFER=y
|
||||
CONFIG_CONNECTOR=y
|
||||
CONFIG_PROC_EVENTS=y
|
||||
@ -1575,9 +1583,6 @@ CONFIG_EEPROM_93CX6=m
|
||||
CONFIG_CB710_CORE=m
|
||||
# CONFIG_CB710_DEBUG is not set
|
||||
CONFIG_CB710_DEBUG_ASSUMPTIONS=y
|
||||
CONFIG_IWMC3200TOP=m
|
||||
# CONFIG_IWMC3200TOP_DEBUG is not set
|
||||
# CONFIG_IWMC3200TOP_DEBUGFS is not set
|
||||
|
||||
#
|
||||
# Texas Instruments shared transport line discipline
|
||||
@ -1619,7 +1624,6 @@ CONFIG_SCSI_MULTI_LUN=y
|
||||
# CONFIG_SCSI_CONSTANTS is not set
|
||||
# CONFIG_SCSI_LOGGING is not set
|
||||
# CONFIG_SCSI_SCAN_ASYNC is not set
|
||||
CONFIG_SCSI_WAIT_SCAN=m
|
||||
|
||||
#
|
||||
# SCSI Transports
|
||||
@ -1854,7 +1858,6 @@ CONFIG_DM_CRYPT=m
|
||||
CONFIG_DM_SNAPSHOT=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
# CONFIG_DM_DEBUG_BLOCK_STACK_TRACING is not set
|
||||
# CONFIG_DM_DEBUG_SPACE_MAPS is not set
|
||||
CONFIG_DM_MIRROR=m
|
||||
CONFIG_DM_RAID=m
|
||||
CONFIG_DM_LOG_USERSPACE=m
|
||||
@ -1914,6 +1917,7 @@ CONFIG_IEEE802154_FAKEHARD=m
|
||||
CONFIG_IEEE802154_FAKELB=m
|
||||
CONFIG_IFB=m
|
||||
CONFIG_NET_TEAM=m
|
||||
CONFIG_NET_TEAM_MODE_BROADCAST=m
|
||||
CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
|
||||
CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
|
||||
CONFIG_NET_TEAM_MODE_LOADBALANCE=m
|
||||
@ -2170,6 +2174,7 @@ CONFIG_CICADA_PHY=m
|
||||
CONFIG_VITESSE_PHY=m
|
||||
CONFIG_SMSC_PHY=m
|
||||
CONFIG_BROADCOM_PHY=m
|
||||
CONFIG_BCM87XX_PHY=m
|
||||
CONFIG_ICPLUS_PHY=m
|
||||
CONFIG_REALTEK_PHY=m
|
||||
CONFIG_NATIONAL_PHY=m
|
||||
@ -2330,13 +2335,13 @@ CONFIG_IPW2200_QOS=y
|
||||
CONFIG_LIBIPW=m
|
||||
# CONFIG_LIBIPW_DEBUG is not set
|
||||
CONFIG_IWLWIFI=m
|
||||
CONFIG_IWLDVM=m
|
||||
|
||||
#
|
||||
# Debugging Options
|
||||
#
|
||||
# CONFIG_IWLWIFI_DEBUG is not set
|
||||
CONFIG_IWLWIFI_DEVICE_TRACING=y
|
||||
CONFIG_IWLWIFI_DEVICE_TESTMODE=y
|
||||
# CONFIG_IWLWIFI_P2P is not set
|
||||
# CONFIG_IWLWIFI_EXPERIMENTAL_MFP is not set
|
||||
CONFIG_IWLEGACY=m
|
||||
@ -2347,9 +2352,6 @@ CONFIG_IWL3945=m
|
||||
# iwl3945 / iwl4965 Debugging Options
|
||||
#
|
||||
# CONFIG_IWLEGACY_DEBUG is not set
|
||||
CONFIG_IWM=m
|
||||
# CONFIG_IWM_DEBUG is not set
|
||||
CONFIG_IWM_TRACING=y
|
||||
CONFIG_LIBERTAS=m
|
||||
CONFIG_LIBERTAS_USB=m
|
||||
CONFIG_LIBERTAS_CS=m
|
||||
@ -2378,6 +2380,7 @@ CONFIG_RT2800PCI=m
|
||||
CONFIG_RT2800PCI_RT33XX=y
|
||||
CONFIG_RT2800PCI_RT35XX=y
|
||||
CONFIG_RT2800PCI_RT53XX=y
|
||||
CONFIG_RT2800PCI_RT3290=y
|
||||
CONFIG_RT2500USB=m
|
||||
CONFIG_RT73USB=m
|
||||
CONFIG_RT2800USB=m
|
||||
@ -2404,6 +2407,7 @@ CONFIG_WL_TI=y
|
||||
CONFIG_WL1251=m
|
||||
CONFIG_WL1251_SDIO=m
|
||||
CONFIG_WL12XX=m
|
||||
CONFIG_WL18XX=m
|
||||
CONFIG_WLCORE=m
|
||||
CONFIG_WLCORE_SDIO=m
|
||||
CONFIG_WL12XX_PLATFORM_DATA=y
|
||||
@ -2419,8 +2423,6 @@ CONFIG_MWIFIEX_USB=m
|
||||
#
|
||||
CONFIG_WIMAX_I2400M=m
|
||||
CONFIG_WIMAX_I2400M_USB=m
|
||||
CONFIG_WIMAX_I2400M_SDIO=m
|
||||
# CONFIG_WIMAX_IWMC3200_SDIO is not set
|
||||
CONFIG_WIMAX_I2400M_DEBUG_LEVEL=8
|
||||
# CONFIG_WAN is not set
|
||||
CONFIG_XEN_NETDEV_FRONTEND=m
|
||||
@ -2680,10 +2682,12 @@ CONFIG_TOUCHSCREEN_WACOM_W8001=m
|
||||
CONFIG_TOUCHSCREEN_WACOM_I2C=m
|
||||
CONFIG_TOUCHSCREEN_MAX11801=m
|
||||
CONFIG_TOUCHSCREEN_MCS5000=m
|
||||
CONFIG_TOUCHSCREEN_MMS114=m
|
||||
CONFIG_TOUCHSCREEN_MTOUCH=m
|
||||
CONFIG_TOUCHSCREEN_INEXIO=m
|
||||
CONFIG_TOUCHSCREEN_MK712=m
|
||||
CONFIG_TOUCHSCREEN_PENMOUNT=m
|
||||
CONFIG_TOUCHSCREEN_EDT_FT5X06=m
|
||||
CONFIG_TOUCHSCREEN_TOUCHRIGHT=m
|
||||
CONFIG_TOUCHSCREEN_TOUCHWIN=m
|
||||
CONFIG_TOUCHSCREEN_UCB1400=m
|
||||
@ -2978,6 +2982,7 @@ CONFIG_GPIO_ICH=m
|
||||
#
|
||||
# I2C GPIO expanders:
|
||||
#
|
||||
CONFIG_GPIO_ARIZONA=m
|
||||
# CONFIG_GPIO_MAX7300 is not set
|
||||
# CONFIG_GPIO_MAX732X is not set
|
||||
# CONFIG_GPIO_PCA953X is not set
|
||||
@ -2988,6 +2993,7 @@ CONFIG_GPIO_ICH=m
|
||||
# PCI GPIO expanders:
|
||||
#
|
||||
CONFIG_GPIO_CS5535=m
|
||||
CONFIG_GPIO_AMD8111=m
|
||||
CONFIG_GPIO_LANGWELL=y
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_ML_IOH is not set
|
||||
@ -3024,6 +3030,7 @@ CONFIG_TEST_POWER=m
|
||||
# CONFIG_CHARGER_LP8727 is not set
|
||||
# CONFIG_CHARGER_GPIO is not set
|
||||
# CONFIG_CHARGER_SMB347 is not set
|
||||
CONFIG_POWER_AVS=y
|
||||
CONFIG_HWMON=y
|
||||
CONFIG_HWMON_VID=m
|
||||
# CONFIG_HWMON_DEBUG_CHIP is not set
|
||||
@ -3062,6 +3069,7 @@ CONFIG_SENSORS_G760A=m
|
||||
CONFIG_SENSORS_GL518SM=m
|
||||
CONFIG_SENSORS_GL520SM=m
|
||||
# CONFIG_SENSORS_GPIO_FAN is not set
|
||||
CONFIG_SENSORS_HIH6130=m
|
||||
CONFIG_SENSORS_CORETEMP=m
|
||||
CONFIG_SENSORS_IBMAEM=m
|
||||
CONFIG_SENSORS_IBMPEX=m
|
||||
@ -3238,12 +3246,13 @@ CONFIG_BCMA=m
|
||||
CONFIG_BCMA_BLOCKIO=y
|
||||
CONFIG_BCMA_HOST_PCI_POSSIBLE=y
|
||||
CONFIG_BCMA_HOST_PCI=y
|
||||
CONFIG_BCMA_DRIVER_GMAC_CMN=y
|
||||
# CONFIG_BCMA_DEBUG is not set
|
||||
|
||||
#
|
||||
# Multifunction device drivers
|
||||
#
|
||||
CONFIG_MFD_CORE=m
|
||||
CONFIG_MFD_CORE=y
|
||||
CONFIG_MFD_SM501=m
|
||||
CONFIG_MFD_SM501_GPIO=y
|
||||
CONFIG_HTC_PASIC3=m
|
||||
@ -3254,6 +3263,10 @@ CONFIG_TPS65010=m
|
||||
CONFIG_TPS6507X=m
|
||||
CONFIG_MFD_TPS65217=m
|
||||
# CONFIG_MFD_TMIO is not set
|
||||
CONFIG_MFD_ARIZONA=y
|
||||
CONFIG_MFD_ARIZONA_I2C=m
|
||||
CONFIG_MFD_WM5102=y
|
||||
CONFIG_MFD_WM5110=y
|
||||
CONFIG_MFD_PCF50633=m
|
||||
CONFIG_PCF50633_ADC=m
|
||||
CONFIG_PCF50633_GPIO=m
|
||||
@ -3275,22 +3288,28 @@ CONFIG_MEDIA_SUPPORT=m
|
||||
#
|
||||
# Multimedia core support
|
||||
#
|
||||
CONFIG_MEDIA_CAMERA_SUPPORT=y
|
||||
CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
|
||||
CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
|
||||
CONFIG_MEDIA_RADIO_SUPPORT=y
|
||||
CONFIG_MEDIA_RC_SUPPORT=y
|
||||
CONFIG_MEDIA_CONTROLLER=y
|
||||
CONFIG_VIDEO_DEV=m
|
||||
CONFIG_VIDEO_V4L2_COMMON=m
|
||||
CONFIG_VIDEO_V4L2_SUBDEV_API=y
|
||||
CONFIG_DVB_CORE=m
|
||||
CONFIG_DVB_NET=y
|
||||
CONFIG_VIDEO_MEDIA=m
|
||||
|
||||
#
|
||||
# Multimedia drivers
|
||||
# Media drivers
|
||||
#
|
||||
CONFIG_VIDEO_SAA7146=m
|
||||
CONFIG_VIDEO_SAA7146_VV=m
|
||||
CONFIG_RC_CORE=m
|
||||
CONFIG_LIRC=m
|
||||
CONFIG_RC_MAP=m
|
||||
CONFIG_RC_DECODERS=y
|
||||
CONFIG_LIRC=m
|
||||
CONFIG_IR_LIRC_CODEC=m
|
||||
CONFIG_IR_NEC_DECODER=m
|
||||
CONFIG_IR_RC5_DECODER=m
|
||||
CONFIG_IR_RC6_DECODER=m
|
||||
@ -3299,7 +3318,7 @@ CONFIG_IR_SONY_DECODER=m
|
||||
CONFIG_IR_RC5_SZ_DECODER=m
|
||||
CONFIG_IR_SANYO_DECODER=m
|
||||
CONFIG_IR_MCE_KBD_DECODER=m
|
||||
CONFIG_IR_LIRC_CODEC=m
|
||||
CONFIG_RC_DEVICES=y
|
||||
CONFIG_RC_ATI_REMOTE=m
|
||||
CONFIG_IR_ENE=m
|
||||
CONFIG_IR_IMON=m
|
||||
@ -3310,6 +3329,7 @@ CONFIG_IR_NUVOTON=m
|
||||
CONFIG_IR_REDRAT3=m
|
||||
CONFIG_IR_STREAMZAP=m
|
||||
CONFIG_IR_WINBOND_CIR=m
|
||||
CONFIG_IR_IGUANA=m
|
||||
CONFIG_RC_LOOPBACK=m
|
||||
CONFIG_IR_GPIO_CIR=m
|
||||
CONFIG_MEDIA_ATTACH=y
|
||||
@ -3337,6 +3357,8 @@ CONFIG_MEDIA_TUNER_MC44S803=m
|
||||
CONFIG_MEDIA_TUNER_MAX2165=m
|
||||
CONFIG_MEDIA_TUNER_TDA18218=m
|
||||
CONFIG_MEDIA_TUNER_FC0011=m
|
||||
CONFIG_MEDIA_TUNER_FC0012=m
|
||||
CONFIG_MEDIA_TUNER_FC0013=m
|
||||
CONFIG_MEDIA_TUNER_TDA18212=m
|
||||
CONFIG_MEDIA_TUNER_TUA9001=m
|
||||
CONFIG_VIDEO_V4L2=m
|
||||
@ -3419,6 +3441,7 @@ CONFIG_VIDEO_SAA7185=m
|
||||
CONFIG_VIDEO_ADV7170=m
|
||||
CONFIG_VIDEO_ADV7175=m
|
||||
CONFIG_VIDEO_ADV7343=m
|
||||
CONFIG_VIDEO_ADV7393=m
|
||||
CONFIG_VIDEO_AK881X=m
|
||||
|
||||
#
|
||||
@ -3457,7 +3480,10 @@ CONFIG_VIDEO_THS7303=m
|
||||
CONFIG_VIDEO_M52790=m
|
||||
CONFIG_VIDEO_VIVI=m
|
||||
CONFIG_V4L_USB_DRIVERS=y
|
||||
CONFIG_VIDEO_AU0828=m
|
||||
|
||||
#
|
||||
# Webcam devices
|
||||
#
|
||||
CONFIG_USB_VIDEO_CLASS=m
|
||||
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
|
||||
CONFIG_USB_GSPCA=m
|
||||
@ -3507,15 +3533,32 @@ CONFIG_USB_GSPCA_VC032X=m
|
||||
CONFIG_USB_GSPCA_VICAM=m
|
||||
CONFIG_USB_GSPCA_XIRLINK_CIT=m
|
||||
CONFIG_USB_GSPCA_ZC3XX=m
|
||||
CONFIG_USB_PWC=m
|
||||
# CONFIG_USB_PWC_DEBUG is not set
|
||||
CONFIG_USB_PWC_INPUT_EVDEV=y
|
||||
CONFIG_VIDEO_CPIA2=m
|
||||
CONFIG_USB_ZR364XX=m
|
||||
CONFIG_USB_STKWEBCAM=m
|
||||
CONFIG_USB_S2255=m
|
||||
CONFIG_USB_SN9C102=m
|
||||
|
||||
#
|
||||
# Webcam and/or TV USB devices
|
||||
#
|
||||
CONFIG_VIDEO_EM28XX=m
|
||||
CONFIG_VIDEO_EM28XX_ALSA=m
|
||||
CONFIG_VIDEO_EM28XX_DVB=m
|
||||
CONFIG_VIDEO_EM28XX_RC=m
|
||||
|
||||
#
|
||||
# TV USB devices
|
||||
#
|
||||
CONFIG_VIDEO_AU0828=m
|
||||
CONFIG_VIDEO_PVRUSB2=m
|
||||
CONFIG_VIDEO_PVRUSB2_SYSFS=y
|
||||
CONFIG_VIDEO_PVRUSB2_DVB=y
|
||||
# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
|
||||
CONFIG_VIDEO_HDPVR=m
|
||||
CONFIG_VIDEO_EM28XX=m
|
||||
CONFIG_VIDEO_EM28XX_ALSA=m
|
||||
CONFIG_VIDEO_EM28XX_DVB=m
|
||||
CONFIG_VIDEO_EM28XX_RC=m
|
||||
CONFIG_VIDEO_TLG2300=m
|
||||
CONFIG_VIDEO_CX231XX=m
|
||||
CONFIG_VIDEO_CX231XX_RC=y
|
||||
@ -3525,14 +3568,6 @@ CONFIG_VIDEO_TM6000=m
|
||||
CONFIG_VIDEO_TM6000_ALSA=m
|
||||
CONFIG_VIDEO_TM6000_DVB=m
|
||||
CONFIG_VIDEO_USBVISION=m
|
||||
CONFIG_USB_SN9C102=m
|
||||
CONFIG_USB_PWC=m
|
||||
# CONFIG_USB_PWC_DEBUG is not set
|
||||
CONFIG_USB_PWC_INPUT_EVDEV=y
|
||||
CONFIG_VIDEO_CPIA2=m
|
||||
CONFIG_USB_ZR364XX=m
|
||||
CONFIG_USB_STKWEBCAM=m
|
||||
CONFIG_USB_S2255=m
|
||||
CONFIG_V4L_PCI_DRIVERS=y
|
||||
CONFIG_VIDEO_BT848=m
|
||||
CONFIG_VIDEO_BT848_DVB=y
|
||||
@ -3578,6 +3613,8 @@ CONFIG_I2C_SI470X=m
|
||||
CONFIG_USB_MR800=m
|
||||
CONFIG_USB_DSBR=m
|
||||
CONFIG_RADIO_MAXIRADIO=m
|
||||
CONFIG_RADIO_SHARK=m
|
||||
CONFIG_RADIO_SHARK2=m
|
||||
CONFIG_I2C_SI4713=m
|
||||
CONFIG_RADIO_SI4713=m
|
||||
CONFIG_USB_KEENE=m
|
||||
@ -3712,7 +3749,6 @@ CONFIG_DVB_DDBRIDGE=m
|
||||
#
|
||||
# Supported DVB Frontends
|
||||
#
|
||||
# CONFIG_DVB_FE_CUSTOMISE is not set
|
||||
|
||||
#
|
||||
# Multistandard (satellite) frontends
|
||||
@ -3779,6 +3815,7 @@ CONFIG_DVB_EC100=m
|
||||
CONFIG_DVB_STV0367=m
|
||||
CONFIG_DVB_CXD2820R=m
|
||||
CONFIG_DVB_RTL2830=m
|
||||
CONFIG_DVB_RTL2832=m
|
||||
|
||||
#
|
||||
# DVB-C (cable) frontends
|
||||
@ -3876,6 +3913,7 @@ CONFIG_DRM_SIS=m
|
||||
CONFIG_DRM_VIA=m
|
||||
CONFIG_DRM_SAVAGE=m
|
||||
CONFIG_DRM_VMWGFX=m
|
||||
CONFIG_DRM_VMWGFX_FBCON=y
|
||||
CONFIG_DRM_GMA500=m
|
||||
CONFIG_DRM_GMA600=y
|
||||
CONFIG_DRM_GMA3600=y
|
||||
@ -4165,6 +4203,7 @@ CONFIG_AC97_BUS=m
|
||||
#
|
||||
CONFIG_HID=m
|
||||
CONFIG_HIDRAW=y
|
||||
CONFIG_UHID=m
|
||||
CONFIG_HID_GENERIC=m
|
||||
|
||||
#
|
||||
@ -4195,6 +4234,7 @@ CONFIG_HID_GYRATION=m
|
||||
CONFIG_HID_TWINHAN=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_LCPOWER=m
|
||||
CONFIG_HID_LENOVO_TPKBD=m
|
||||
CONFIG_HID_LOGITECH=m
|
||||
CONFIG_HID_LOGITECH_DJ=m
|
||||
CONFIG_LOGITECH_FF=y
|
||||
@ -4583,13 +4623,16 @@ CONFIG_LEDS_LT3593=m
|
||||
CONFIG_LEDS_DELL_NETBOOKS=m
|
||||
CONFIG_LEDS_MC13783=m
|
||||
CONFIG_LEDS_TCA6507=m
|
||||
CONFIG_LEDS_LM3556=m
|
||||
CONFIG_LEDS_OT200=m
|
||||
CONFIG_LEDS_BLINKM=m
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
|
||||
#
|
||||
# LED Triggers
|
||||
#
|
||||
CONFIG_LEDS_TRIGGER_TIMER=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_BACKLIGHT=m
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
@ -4607,6 +4650,7 @@ CONFIG_EDAC=y
|
||||
#
|
||||
# Reporting subsystems
|
||||
#
|
||||
CONFIG_EDAC_LEGACY_SYSFS=y
|
||||
# CONFIG_EDAC_DEBUG is not set
|
||||
CONFIG_EDAC_DECODE_MCE=m
|
||||
CONFIG_EDAC_MCE_INJ=m
|
||||
@ -4722,6 +4766,7 @@ CONFIG_UIO_AEC=m
|
||||
CONFIG_UIO_SERCOS3=m
|
||||
CONFIG_UIO_PCI_GENERIC=m
|
||||
CONFIG_UIO_NETX=m
|
||||
# CONFIG_VFIO is not set
|
||||
CONFIG_VIRTIO=m
|
||||
CONFIG_VIRTIO_RING=m
|
||||
|
||||
@ -4759,6 +4804,7 @@ CONFIG_XEN_TMEM=y
|
||||
CONFIG_XEN_PCIDEV_BACKEND=m
|
||||
CONFIG_XEN_PRIVCMD=m
|
||||
CONFIG_XEN_ACPI_PROCESSOR=m
|
||||
# CONFIG_XEN_MCE_LOG is not set
|
||||
CONFIG_STAGING=y
|
||||
CONFIG_ET131X=m
|
||||
CONFIG_SLICOSS=m
|
||||
@ -4773,14 +4819,14 @@ CONFIG_COMEDI=m
|
||||
# CONFIG_COMEDI_DEBUG is not set
|
||||
CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048
|
||||
CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480
|
||||
CONFIG_COMEDI_MISC_DRIVERS=m
|
||||
CONFIG_COMEDI_MISC_DRIVERS=y
|
||||
CONFIG_COMEDI_KCOMEDILIB=m
|
||||
CONFIG_COMEDI_BOND=m
|
||||
CONFIG_COMEDI_TEST=m
|
||||
CONFIG_COMEDI_PARPORT=m
|
||||
CONFIG_COMEDI_SERIAL2002=m
|
||||
CONFIG_COMEDI_SKEL=m
|
||||
CONFIG_COMEDI_PCI_DRIVERS=m
|
||||
CONFIG_COMEDI_PCI_DRIVERS=y
|
||||
CONFIG_COMEDI_ADDI_APCI_035=m
|
||||
CONFIG_COMEDI_ADDI_APCI_1032=m
|
||||
CONFIG_COMEDI_ADDI_APCI_1500=m
|
||||
@ -4832,13 +4878,16 @@ CONFIG_COMEDI_NI_6527=m
|
||||
CONFIG_COMEDI_NI_65XX=m
|
||||
CONFIG_COMEDI_NI_660X=m
|
||||
CONFIG_COMEDI_NI_670X=m
|
||||
CONFIG_COMEDI_NI_LABPC=m
|
||||
CONFIG_COMEDI_NI_PCIDIO=m
|
||||
CONFIG_COMEDI_NI_PCIMIO=m
|
||||
CONFIG_COMEDI_RTD520=m
|
||||
CONFIG_COMEDI_S526=m
|
||||
CONFIG_COMEDI_S626=m
|
||||
CONFIG_COMEDI_SSV_DNP=m
|
||||
CONFIG_COMEDI_PCMCIA_DRIVERS=m
|
||||
CONFIG_COMEDI_MITE=m
|
||||
CONFIG_COMEDI_NI_TIOCMD=m
|
||||
CONFIG_COMEDI_PCMCIA_DRIVERS=y
|
||||
CONFIG_COMEDI_CB_DAS16_CS=m
|
||||
CONFIG_COMEDI_DAS08_CS=m
|
||||
CONFIG_COMEDI_NI_DAQ_700_CS=m
|
||||
@ -4846,22 +4895,19 @@ CONFIG_COMEDI_NI_DAQ_DIO24_CS=m
|
||||
CONFIG_COMEDI_NI_LABPC_CS=m
|
||||
CONFIG_COMEDI_NI_MIO_CS=m
|
||||
CONFIG_COMEDI_QUATECH_DAQP_CS=m
|
||||
CONFIG_COMEDI_USB_DRIVERS=m
|
||||
CONFIG_COMEDI_USB_DRIVERS=y
|
||||
CONFIG_COMEDI_DT9812=m
|
||||
CONFIG_COMEDI_USBDUX=m
|
||||
CONFIG_COMEDI_USBDUXFAST=m
|
||||
CONFIG_COMEDI_USBDUXSIGMA=m
|
||||
CONFIG_COMEDI_VMK80XX=m
|
||||
CONFIG_COMEDI_NI_COMMON=m
|
||||
CONFIG_COMEDI_MITE=m
|
||||
CONFIG_COMEDI_NI_TIO=m
|
||||
CONFIG_COMEDI_NI_LABPC=m
|
||||
CONFIG_COMEDI_8255=m
|
||||
CONFIG_COMEDI_FC=m
|
||||
CONFIG_COMEDI_AMPLC_DIO200=m
|
||||
CONFIG_COMEDI_AMPLC_PC236=m
|
||||
CONFIG_COMEDI_AMPLC_PC263=m
|
||||
CONFIG_COMEDI_DAS08=m
|
||||
CONFIG_COMEDI_NI_TIO=m
|
||||
CONFIG_ASUS_OLED=m
|
||||
# CONFIG_PANEL is not set
|
||||
CONFIG_R8187SE=m
|
||||
@ -4973,6 +5019,7 @@ CONFIG_WIMAX_GDM72XX_WIMAX2=y
|
||||
CONFIG_WIMAX_GDM72XX_USB=y
|
||||
# CONFIG_WIMAX_GDM72XX_SDIO is not set
|
||||
CONFIG_WIMAX_GDM72XX_USB_PM=y
|
||||
CONFIG_CSR_WIFI=m
|
||||
CONFIG_X86_PLATFORM_DEVICES=y
|
||||
CONFIG_ACER_WMI=m
|
||||
CONFIG_ACERHDF=m
|
||||
@ -5052,9 +5099,11 @@ CONFIG_EXTCON=m
|
||||
# Extcon Device Drivers
|
||||
#
|
||||
CONFIG_EXTCON_GPIO=m
|
||||
CONFIG_EXTCON_ARIZONA=m
|
||||
CONFIG_MEMORY=y
|
||||
# CONFIG_IIO is not set
|
||||
# CONFIG_VME_BUS is not set
|
||||
# CONFIG_PWM is not set
|
||||
|
||||
#
|
||||
# Firmware Drivers
|
||||
@ -5131,7 +5180,7 @@ CONFIG_QFMT_V1=m
|
||||
CONFIG_QFMT_V2=m
|
||||
CONFIG_QUOTACTL=y
|
||||
CONFIG_QUOTACTL_COMPAT=y
|
||||
CONFIG_AUTOFS4_FS=m
|
||||
CONFIG_AUTOFS4_FS=y
|
||||
CONFIG_FUSE_FS=m
|
||||
CONFIG_CUSE=m
|
||||
CONFIG_GENERIC_ACL=y
|
||||
@ -5226,6 +5275,8 @@ CONFIG_OMFS_FS=m
|
||||
# CONFIG_QNX6FS_FS is not set
|
||||
# CONFIG_ROMFS_FS is not set
|
||||
CONFIG_PSTORE=y
|
||||
# CONFIG_PSTORE_CONSOLE is not set
|
||||
# CONFIG_PSTORE_FTRACE is not set
|
||||
CONFIG_PSTORE_RAM=m
|
||||
# CONFIG_SYSV_FS is not set
|
||||
CONFIG_UFS_FS=m
|
||||
@ -5236,10 +5287,11 @@ CONFIG_EXOFS_FS=m
|
||||
CONFIG_ORE=m
|
||||
CONFIG_NETWORK_FILESYSTEMS=y
|
||||
CONFIG_NFS_FS=m
|
||||
CONFIG_NFS_V2=y
|
||||
CONFIG_NFS_V3=y
|
||||
CONFIG_NFS_V2=m
|
||||
CONFIG_NFS_V3=m
|
||||
CONFIG_NFS_V3_ACL=y
|
||||
CONFIG_NFS_V4=y
|
||||
CONFIG_NFS_V4=m
|
||||
# CONFIG_NFS_SWAP is not set
|
||||
# CONFIG_NFS_V4_1 is not set
|
||||
CONFIG_NFS_FSCACHE=y
|
||||
# CONFIG_NFS_USE_LEGACY_DNS is not set
|
||||
@ -5416,7 +5468,7 @@ CONFIG_RCU_CPU_STALL_TIMEOUT=60
|
||||
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
|
||||
# CONFIG_DEBUG_PER_CPU_MAPS is not set
|
||||
CONFIG_LKDTM=m
|
||||
CONFIG_CPU_NOTIFIER_ERROR_INJECT=m
|
||||
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
|
||||
# CONFIG_FAULT_INJECTION is not set
|
||||
# CONFIG_LATENCYTOP is not set
|
||||
# CONFIG_DEBUG_PAGEALLOC is not set
|
||||
@ -5482,6 +5534,7 @@ CONFIG_DEBUG_RODATA=y
|
||||
# CONFIG_DEBUG_RODATA_TEST is not set
|
||||
# CONFIG_DEBUG_SET_MODULE_RONX is not set
|
||||
# CONFIG_DEBUG_NX_TEST is not set
|
||||
# CONFIG_DEBUG_TLBFLUSH is not set
|
||||
# CONFIG_IOMMU_DEBUG is not set
|
||||
# CONFIG_IOMMU_STRESS is not set
|
||||
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
|
||||
@ -5567,6 +5620,8 @@ CONFIG_CRYPTO_WORKQUEUE=y
|
||||
CONFIG_CRYPTO_CRYPTD=m
|
||||
CONFIG_CRYPTO_AUTHENC=m
|
||||
CONFIG_CRYPTO_TEST=m
|
||||
CONFIG_CRYPTO_ABLK_HELPER_X86=m
|
||||
CONFIG_CRYPTO_GLUE_HELPER_X86=m
|
||||
|
||||
#
|
||||
# Authenticated Encryption with Associated Data
|
||||
@ -5637,11 +5692,13 @@ CONFIG_CRYPTO_SALSA20_X86_64=m
|
||||
CONFIG_CRYPTO_SEED=m
|
||||
CONFIG_CRYPTO_SERPENT=m
|
||||
CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m
|
||||
CONFIG_CRYPTO_SERPENT_AVX_X86_64=m
|
||||
CONFIG_CRYPTO_TEA=m
|
||||
CONFIG_CRYPTO_TWOFISH=m
|
||||
CONFIG_CRYPTO_TWOFISH_COMMON=m
|
||||
CONFIG_CRYPTO_TWOFISH_X86_64=m
|
||||
CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m
|
||||
CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m
|
||||
|
||||
#
|
||||
# Compression
|
||||
@ -5674,6 +5731,7 @@ CONFIG_KVM_INTEL=m
|
||||
CONFIG_KVM_AMD=m
|
||||
CONFIG_KVM_MMU_AUDIT=y
|
||||
CONFIG_VHOST_NET=m
|
||||
CONFIG_TCM_VHOST=m
|
||||
CONFIG_BINARY_PRINTF=y
|
||||
|
||||
#
|
||||
@ -5737,6 +5795,7 @@ CONFIG_CHECK_SIGNATURE=y
|
||||
CONFIG_CPU_RMAP=y
|
||||
CONFIG_DQL=y
|
||||
CONFIG_NLATTR=y
|
||||
CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
|
||||
CONFIG_LRU_CACHE=m
|
||||
CONFIG_AVERAGE=y
|
||||
CONFIG_CORDIC=m
|
||||
|
@ -5,7 +5,7 @@ rm -Rf aufs3-standalone
|
||||
git clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs3-standalone.git
|
||||
cd aufs3-standalone
|
||||
git branch -r
|
||||
git checkout origin/aufs3.5
|
||||
git checkout origin/aufs3.6
|
||||
|
||||
# modify what you want
|
||||
|
||||
@ -15,16 +15,16 @@ git checkout origin/aufs3.5
|
||||
rm -v $(find . -type f -name '*.orig')
|
||||
grep -qse 'EXPORT_SYMBOL(' aufs3-standalone.patch && \
|
||||
sed -i-old -e 's|EXPORT_SYMBOL(|EXPORT_SYMBOL_GPL(|' aufs3-standalone.patch
|
||||
rm -rf ../tmp/linux-3.5
|
||||
mkdir -p ../tmp/linux-3.5
|
||||
cp -a fs ../tmp/linux-3.5
|
||||
cp -a include ../tmp/linux-3.5
|
||||
cp -a Documentation ../tmp/linux-3.5
|
||||
rm ../tmp/linux-3.5/include/linux/Kbuild
|
||||
rm -rf ../tmp/linux-3.6
|
||||
mkdir -p ../tmp/linux-3.6
|
||||
cp -a fs ../tmp/linux-3.6
|
||||
cp -a include ../tmp/linux-3.6
|
||||
cp -a Documentation ../tmp/linux-3.6
|
||||
rm ../tmp/linux-3.6/include/linux/Kbuild
|
||||
cd ../tmp
|
||||
diff -Naur null linux-3.5 | filterdiff | \
|
||||
sed -e 's|null\(/include/linux/Kbuild\)|linux-3.5-old\1|;s|^--- null.*|--- /dev/null|;\|linux-3.5/include/linux/Kbuild|,${\|@@ -0,0 +1 @@|,$d}' \
|
||||
| bzip2 > aufs$(sed -ne 's|#define.*AUFS_VERSION.*"\(.*\)"|\1|p' linux-3.5/include/linux/aufs_type.h).patch.bz2
|
||||
diff -Naur null linux-3.6 | filterdiff | \
|
||||
sed -e 's|null\(/include/linux/Kbuild\)|linux-3.6-old\1|;s|^--- null.*|--- /dev/null|;\|linux-3.6/include/linux/Kbuild|,${\|@@ -0,0 +1 @@|,$d}' \
|
||||
| bzip2 > aufs$(sed -ne 's|#define.*AUFS_VERSION.*"\(.*\)"|\1|p' linux-3.6/include/linux/aufs_type.h).patch.bz2
|
||||
mv *.bz2 $OLDPWD
|
||||
cd $OLDPWD
|
||||
mv *patch* ..
|
||||
|
@ -1,47 +0,0 @@
|
||||
From cee25168e9c4ef7f9417632af2dc78b8521dfda7 Mon Sep 17 00:00:00 2001
|
||||
From: Jani Nikula <jani.nikula@intel.com>
|
||||
Date: Mon, 13 Aug 2012 17:33:02 +0300
|
||||
Subject: [PATCH] drm/i915: ensure i2c adapter is all set before adding it
|
||||
|
||||
i2c_add_adapter() may do i2c transfers on the bus to detect supported
|
||||
devices. Therefore the adapter needs to be all set before adding it. This
|
||||
was not the case for the bit-banging fallback, resulting in an oops if the
|
||||
device detection GMBUS transfers timed out. Fix the issue by calling
|
||||
i2c_add_adapter() only after intel_gpio_setup().
|
||||
|
||||
LKML-Reference: <5021F00B.7000503@ionic.de>
|
||||
Tested-by: Mihai Moldovan <ionic@ionic.de>
|
||||
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
|
||||
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
|
||||
---
|
||||
drivers/gpu/drm/i915/intel_i2c.c | 7 ++++---
|
||||
1 files changed, 4 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/drivers/gpu/drm/i915/intel_i2c.c b/drivers/gpu/drm/i915/intel_i2c.c
|
||||
index d79500b..b9755f6 100644
|
||||
--- a/drivers/gpu/drm/i915/intel_i2c.c
|
||||
+++ b/drivers/gpu/drm/i915/intel_i2c.c
|
||||
@@ -486,9 +486,6 @@ int intel_setup_gmbus(struct drm_device *dev)
|
||||
bus->dev_priv = dev_priv;
|
||||
|
||||
bus->adapter.algo = &gmbus_algorithm;
|
||||
- ret = i2c_add_adapter(&bus->adapter);
|
||||
- if (ret)
|
||||
- goto err;
|
||||
|
||||
/* By default use a conservative clock rate */
|
||||
bus->reg0 = port | GMBUS_RATE_100KHZ;
|
||||
@@ -498,6 +495,10 @@ int intel_setup_gmbus(struct drm_device *dev)
|
||||
bus->force_bit = true;
|
||||
|
||||
intel_gpio_setup(bus, port);
|
||||
+
|
||||
+ ret = i2c_add_adapter(&bus->adapter);
|
||||
+ if (ret)
|
||||
+ goto err;
|
||||
}
|
||||
|
||||
intel_i2c_reset(dev_priv->dev);
|
||||
--
|
||||
1.7.7.6
|
||||
|
@ -2,7 +2,7 @@
|
||||
# arg 2: the old package version
|
||||
|
||||
KERNEL_NAME=
|
||||
KERNEL_VERSION=3.5.6-1-CHAKRA
|
||||
KERNEL_VERSION=3.6.6-1-CHAKRA
|
||||
|
||||
# set a sane PATH to ensure that critical utils like depmod will be found
|
||||
export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
|
||||
|
77
linux/module-init-wait-3.6.patch
Normal file
77
linux/module-init-wait-3.6.patch
Normal file
@ -0,0 +1,77 @@
|
||||
From: Rusty Russell <rusty@rustcorp.com.au>
|
||||
Date: Fri, 28 Sep 2012 05:01:03 +0000 (+0930)
|
||||
Subject: module: wait when loading a module which is currently initializing.
|
||||
X-Git-Tag: v3.7-rc1~2^2~32
|
||||
X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftorvalds%2Flinux-2.6.git;a=commitdiff_plain;h=9bb9c3be568346538
|
||||
|
||||
module: wait when loading a module which is currently initializing.
|
||||
|
||||
The original module-init-tools module loader used a fnctl lock on the
|
||||
.ko file to avoid attempts to simultaneously load a module.
|
||||
Unfortunately, you can't get an exclusive fcntl lock on a read-only
|
||||
fd, making this not work for read-only mounted filesystems.
|
||||
module-init-tools has a hacky sleep-and-loop for this now.
|
||||
|
||||
It's not that hard to wait in the kernel, and only return -EEXIST once
|
||||
the first module has finished loading (or continue loading the module
|
||||
if the first one failed to initialize for some reason). It's also
|
||||
consistent with what we do for dependent modules which are still loading.
|
||||
|
||||
Suggested-by: Lucas De Marchi <lucas.demarchi@profusion.mobi>
|
||||
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
|
||||
---
|
||||
|
||||
diff --git a/kernel/module.c b/kernel/module.c
|
||||
index 63cf6e7..74bc195 100644
|
||||
--- a/kernel/module.c
|
||||
+++ b/kernel/module.c
|
||||
@@ -2845,6 +2845,20 @@ static int post_relocation(struct module *mod, const struct load_info *info)
|
||||
return module_finalize(info->hdr, info->sechdrs, mod);
|
||||
}
|
||||
|
||||
+/* Is this module of this name done loading? No locks held. */
|
||||
+static bool finished_loading(const char *name)
|
||||
+{
|
||||
+ struct module *mod;
|
||||
+ bool ret;
|
||||
+
|
||||
+ mutex_lock(&module_mutex);
|
||||
+ mod = find_module(name);
|
||||
+ ret = !mod || mod->state != MODULE_STATE_COMING;
|
||||
+ mutex_unlock(&module_mutex);
|
||||
+
|
||||
+ return ret;
|
||||
+}
|
||||
+
|
||||
/* Allocate and load the module: note that size of section 0 is always
|
||||
zero, and we rely on this for optional sections. */
|
||||
static struct module *load_module(void __user *umod,
|
||||
@@ -2852,7 +2866,7 @@ static struct module *load_module(void __user *umod,
|
||||
const char __user *uargs)
|
||||
{
|
||||
struct load_info info = { NULL, };
|
||||
- struct module *mod;
|
||||
+ struct module *mod, *old;
|
||||
long err;
|
||||
|
||||
pr_debug("load_module: umod=%p, len=%lu, uargs=%p\n",
|
||||
@@ -2918,8 +2932,18 @@ static struct module *load_module(void __user *umod,
|
||||
* function to insert in a way safe to concurrent readers.
|
||||
* The mutex protects against concurrent writers.
|
||||
*/
|
||||
+again:
|
||||
mutex_lock(&module_mutex);
|
||||
- if (find_module(mod->name)) {
|
||||
+ if ((old = find_module(mod->name)) != NULL) {
|
||||
+ if (old->state == MODULE_STATE_COMING) {
|
||||
+ /* Wait in case it fails to load. */
|
||||
+ mutex_unlock(&module_mutex);
|
||||
+ err = wait_event_interruptible(module_wq,
|
||||
+ finished_loading(mod->name));
|
||||
+ if (err)
|
||||
+ goto free_arch_cleanup;
|
||||
+ goto again;
|
||||
+ }
|
||||
err = -EEXIST;
|
||||
goto unlock;
|
||||
}
|
66
linux/module-symbol-waiting-3.6.patch
Normal file
66
linux/module-symbol-waiting-3.6.patch
Normal file
@ -0,0 +1,66 @@
|
||||
From: Rusty Russell <rusty@rustcorp.com.au>
|
||||
Date: Fri, 28 Sep 2012 05:01:03 +0000 (+0930)
|
||||
Subject: module: fix symbol waiting when module fails before init
|
||||
X-Git-Tag: v3.7-rc1~2^2~33
|
||||
X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftorvalds%2Flinux-2.6.git;a=commitdiff_plain;h=6f13909f4fe9652f1
|
||||
|
||||
module: fix symbol waiting when module fails before init
|
||||
|
||||
We use resolve_symbol_wait(), which blocks if the module containing
|
||||
the symbol is still loading. However:
|
||||
|
||||
1) The module_wq we use is only woken after calling the modules' init
|
||||
function, but there are other failure paths after the module is
|
||||
placed in the linked list where we need to do the same thing.
|
||||
|
||||
2) wake_up() only wakes one waiter, and our waitqueue is shared by all
|
||||
modules, so we need to wake them all.
|
||||
|
||||
3) wake_up_all() doesn't imply a memory barrier: I feel happier calling
|
||||
it after we've grabbed and dropped the module_mutex, not just after
|
||||
the state assignment.
|
||||
|
||||
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
|
||||
---
|
||||
|
||||
diff --git a/kernel/module.c b/kernel/module.c
|
||||
index 7f2ee45f..63cf6e7 100644
|
||||
--- a/kernel/module.c
|
||||
+++ b/kernel/module.c
|
||||
@@ -2959,7 +2959,7 @@ static struct module *load_module(void __user *umod,
|
||||
/* Unlink carefully: kallsyms could be walking list. */
|
||||
list_del_rcu(&mod->list);
|
||||
module_bug_cleanup(mod);
|
||||
-
|
||||
+ wake_up_all(&module_wq);
|
||||
ddebug:
|
||||
dynamic_debug_remove(info.debug);
|
||||
unlock:
|
||||
@@ -3034,7 +3034,7 @@ SYSCALL_DEFINE3(init_module, void __user *, umod,
|
||||
blocking_notifier_call_chain(&module_notify_list,
|
||||
MODULE_STATE_GOING, mod);
|
||||
free_module(mod);
|
||||
- wake_up(&module_wq);
|
||||
+ wake_up_all(&module_wq);
|
||||
return ret;
|
||||
}
|
||||
if (ret > 0) {
|
||||
@@ -3046,9 +3046,8 @@ SYSCALL_DEFINE3(init_module, void __user *, umod,
|
||||
dump_stack();
|
||||
}
|
||||
|
||||
- /* Now it's a first class citizen! Wake up anyone waiting for it. */
|
||||
+ /* Now it's a first class citizen! */
|
||||
mod->state = MODULE_STATE_LIVE;
|
||||
- wake_up(&module_wq);
|
||||
blocking_notifier_call_chain(&module_notify_list,
|
||||
MODULE_STATE_LIVE, mod);
|
||||
|
||||
@@ -3071,6 +3070,7 @@ SYSCALL_DEFINE3(init_module, void __user *, umod,
|
||||
mod->init_ro_size = 0;
|
||||
mod->init_text_size = 0;
|
||||
mutex_unlock(&module_mutex);
|
||||
+ wake_up_all(&module_wq);
|
||||
|
||||
return 0;
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
diff --git a/drivers/mfd/lpc_ich.c b/drivers/mfd/lpc_ich.c
|
||||
index 027cc8f..a05fdfc 100644
|
||||
--- a/drivers/mfd/lpc_ich.c
|
||||
+++ b/drivers/mfd/lpc_ich.c
|
||||
@@ -765,7 +765,6 @@ static int __devinit lpc_ich_init_wdt(struct pci_dev *dev,
|
||||
u32 base_addr_cfg;
|
||||
u32 base_addr;
|
||||
int ret;
|
||||
- bool acpi_conflict = false;
|
||||
struct resource *res;
|
||||
|
||||
/* Setup power management base register */
|
||||
@@ -780,20 +779,11 @@ static int __devinit lpc_ich_init_wdt(struct pci_dev *dev,
|
||||
res = wdt_io_res(ICH_RES_IO_TCO);
|
||||
res->start = base_addr + ACPIBASE_TCO_OFF;
|
||||
res->end = base_addr + ACPIBASE_TCO_END;
|
||||
- ret = acpi_check_resource_conflict(res);
|
||||
- if (ret) {
|
||||
- acpi_conflict = true;
|
||||
- goto wdt_done;
|
||||
- }
|
||||
|
||||
res = wdt_io_res(ICH_RES_IO_SMI);
|
||||
res->start = base_addr + ACPIBASE_SMI_OFF;
|
||||
res->end = base_addr + ACPIBASE_SMI_END;
|
||||
- ret = acpi_check_resource_conflict(res);
|
||||
- if (ret) {
|
||||
- acpi_conflict = true;
|
||||
- goto wdt_done;
|
||||
- }
|
||||
+
|
||||
lpc_ich_enable_acpi_space(dev);
|
||||
|
||||
/*
|
||||
@@ -813,11 +803,6 @@ static int __devinit lpc_ich_init_wdt(struct pci_dev *dev,
|
||||
res = wdt_mem_res(ICH_RES_MEM_GCS);
|
||||
res->start = base_addr + ACPIBASE_GCS_OFF;
|
||||
res->end = base_addr + ACPIBASE_GCS_END;
|
||||
- ret = acpi_check_resource_conflict(res);
|
||||
- if (ret) {
|
||||
- acpi_conflict = true;
|
||||
- goto wdt_done;
|
||||
- }
|
||||
}
|
||||
|
||||
lpc_ich_finalize_cell(&lpc_ich_cells[LPC_WDT], id);
|
||||
@@ -825,9 +810,6 @@ static int __devinit lpc_ich_init_wdt(struct pci_dev *dev,
|
||||
1, NULL, 0);
|
||||
|
||||
wdt_done:
|
||||
- if (acpi_conflict)
|
||||
- pr_warn("Resource conflict(s) found affecting %s\n",
|
||||
- lpc_ich_cells[LPC_WDT].name);
|
||||
return ret;
|
||||
}
|
||||
|
||||
--
|
||||
1.7.1
|
||||
|
||||
|
@ -4,10 +4,10 @@
|
||||
# maintainer: abveritas@chakra-project.org
|
||||
|
||||
pkgname=mkinitcpio
|
||||
pkgver=0.10
|
||||
pkgrel=2
|
||||
pkgver=0.11.0
|
||||
pkgrel=1
|
||||
pkgdesc="Modular initramfs image creation utility"
|
||||
arch=('any')
|
||||
arch=('x86_64')
|
||||
url="http://www.archlinux.org/"
|
||||
license=('GPL')
|
||||
depends=('awk' 'mkinitcpio-busybox>=1.19.4-2' 'kmod' 'util-linux>=2.21' 'libarchive' 'coreutils'
|
||||
@ -19,8 +19,8 @@ optdepends=('xz: Use lzma or xz compression for the initramfs image'
|
||||
backup=('etc/mkinitcpio.conf')
|
||||
source=("ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
|
||||
install=mkinitcpio.install
|
||||
sha256sums=('cd3526b135ede8ca60e05222b1e86cdf3a917947d4fd5b6e6a0a34ec408bc494'
|
||||
'21bd8a75203d15706fd66bfc9520ea1eb728736ee8f6c6a595f63f997b2673e3')
|
||||
sha256sums=('4d65ecb827b9c07955409cdfeab3b64ec2536306961f6050e1a4fbe7ea79d150'
|
||||
'275afca3a4ac0cc5555b5a7d4b89c71ba14ea4a9fbf2dfce63eab6d6d70c831a')
|
||||
|
||||
package() {
|
||||
make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
|
||||
|
Loading…
Reference in New Issue
Block a user