diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2005-09-20 14:49:36 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-20 14:49:36 +0000 |
commit | eb992319a0a412435289e60b5e666da07133d1f5 (patch) | |
tree | 1cee9b6e532cf1c859026c1b740ffb01c4b86285 /packages/udev/udev-058/noasmlinkage.patch | |
parent | c838ad939cd52d897390eefb9b578cd654b9e98d (diff) |
udev: Rearrange the udev files into a more logical structure. Create copies of the rules we're using rather than the distributed version due to links to external scripts. Add mount.sh which attempts to mount block devices using pmount if available, falling back to mount if not. Fix the --mode switch to mknod in the init script.
Diffstat (limited to 'packages/udev/udev-058/noasmlinkage.patch')
-rw-r--r-- | packages/udev/udev-058/noasmlinkage.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/udev/udev-058/noasmlinkage.patch b/packages/udev/udev-058/noasmlinkage.patch new file mode 100644 index 0000000000..1694d4d661 --- /dev/null +++ b/packages/udev/udev-058/noasmlinkage.patch @@ -0,0 +1,27 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- udev-042/udev.c~noasmlinkage ++++ udev-042/udev.c +@@ -60,7 +60,7 @@ + } + #endif + +-static void asmlinkage sig_handler(int signum) ++static void sig_handler(int signum) + { + switch (signum) { + case SIGALRM: +--- udev-042/udevd.c~noasmlinkage ++++ udev-042/udevd.c +@@ -308,7 +308,7 @@ + return; + } + +-static void asmlinkage sig_handler(int signum) ++static void sig_handler(int signum) + { + int rc; + |