diff options
author | Anders Darander <anders@chargestorm.se> | 2011-07-01 15:07:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-01 23:33:55 +0100 |
commit | 773fc8fc45224e37d442d927ed28d50680fb954c (patch) | |
tree | 600d3998a57bbfbbaad5c4461edcafee6a5501dd /meta/recipes-kernel/module-init-tools/files | |
parent | 351e352c2e44a3d8103594ca7e1d8404979a220c (diff) | |
download | openembedded-core-773fc8fc45224e37d442d927ed28d50680fb954c.tar.gz openembedded-core-773fc8fc45224e37d442d927ed28d50680fb954c.tar.bz2 openembedded-core-773fc8fc45224e37d442d927ed28d50680fb954c.zip |
modules-init-tools(-cross): update to 3.16
Update to get support for Linux 3.0.
Delete the ignore_arch_directory.patch (as it does not apply to 3.16).
Signed-off-by: Anders Darander <anders@chargestorm.se>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/module-init-tools/files')
-rw-r--r-- | meta/recipes-kernel/module-init-tools/files/ignore_arch_directory.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-kernel/module-init-tools/files/ignore_arch_directory.patch b/meta/recipes-kernel/module-init-tools/files/ignore_arch_directory.patch deleted file mode 100644 index d29957d98b..0000000000 --- a/meta/recipes-kernel/module-init-tools/files/ignore_arch_directory.patch +++ /dev/null @@ -1,30 +0,0 @@ -# not sure the reason yet. Keep for a while and verify later. -# -# comments added by Kevin Tian <kevin.tian@intel.com>, 2010-07-21 - -Upstream-Status: Pending - -diff -ruN module-init-tools-3.12.orig/modprobe.8 module-init-tools-3.12/modprobe.8 ---- module-init-tools-3.12/modprobe.8.orig -+++ module-init-tools-3.12/modprobe.8 -@@ -27,6 +27,7 @@ - (see \fBmodprobe.conf\fR(5)). \fBmodprobe\fR will also use module - options specified on the kernel command line in the form of - <module>\&.<option>\&. -+All files in the \fI/etc/modprobe.d/arch/\fR directory are ignored. - .PP - Note that unlike in 2.4 series Linux kernels (which are not supported - by this tool) this version of \fBmodprobe\fR does not ---- module-init-tools-3.12/modprobe.c.orig -+++ module-init-tools-3.12/modprobe.c -@@ -1052,6 +1052,10 @@ - DIR *dir; - int ret = 0; - -+ /* ignore everything in this directory */ -+ if (streq(filename, "/etc/modprobe.d/arch")) -+ return 1; -+ - dir = opendir(filename); - if (dir) { - struct file_entry { |