diff options
| author | Kevin Tian <kevin.tian@intel.com> | 2010-07-21 13:21:49 +0800 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-21 21:44:37 +0100 |
| commit | b376a803cac9c6403ce7ddf2a4a479292ec9ba85 (patch) | |
| tree | b642f0fbe43e030348858dde2c564b970d88d2d1 /meta/packages/module-init-tools/files/module-init-tools-remove-index.patch | |
| parent | 8a251accbfd68078fbab23a96411b76928cf1063 (diff) | |
| download | poky-b376a803cac9c6403ce7ddf2a4a479292ec9ba85.tar.gz | |
module-init-tools: upgrade to 3.12
[Patches]
KEEP _ignore_arch_directory_: ignore /etc/modprobe.d/arch, not sure reason now.
keep it and to be verified later
REMOVE _module-init-tools-remove-index.patch_: in upstream
NEW _disable_man.patch_: a simpler patch to replace below removed two
REMOVE _manpagesopt_: due to above new patch
REMOVE _no_man_rebuild_: ditto
KEEP _modutils_extension_: poky has its own name convention and thus need such knowledge
in code
[Recipe]
- adjust indention
- remove some old lines like ${S} and EXTRA_OECONF
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta/packages/module-init-tools/files/module-init-tools-remove-index.patch')
| -rw-r--r-- | meta/packages/module-init-tools/files/module-init-tools-remove-index.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/meta/packages/module-init-tools/files/module-init-tools-remove-index.patch b/meta/packages/module-init-tools/files/module-init-tools-remove-index.patch deleted file mode 100644 index c56532e007..0000000000 --- a/meta/packages/module-init-tools/files/module-init-tools-remove-index.patch +++ /dev/null | |||
| @@ -1,14 +0,0 @@ | |||
| 1 | http://uclibc.org/cgi-bin/viewcvs.cgi/trunk/buildroot/package/module-init-tools/module-init-tools-remove-index.patch?rev=16782&view=auto | ||
| 2 | |||
| 3 | diff -ur module-init-tools-3.2.2/modprobe.c module-init-tools-3.2.2-patched/modprobe.c | ||
| 4 | --- module-init-tools-3.2.2/modprobe.c 2005-12-01 17:42:09.000000000 -0600 | ||
| 5 | +++ module-init-tools-3.2.2-patched/modprobe.c 2006-12-04 19:50:50.353237649 -0600 | ||
| 6 | @@ -270,7 +270,7 @@ | ||
| 7 | char *modname; | ||
| 8 | |||
| 9 | /* Ignore lines without : or which start with a # */ | ||
| 10 | - ptr = index(line, ':'); | ||
| 11 | + ptr = strchr(line, ':'); | ||
| 12 | if (ptr == NULL || line[strspn(line, "\t ")] == '#') | ||
| 13 | return 0; | ||
| 14 | |||
