diff options
author | Dexuan Cui <dexuan.cui@intel.com> | 2011-04-19 16:22:07 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-24 22:50:25 +0100 |
commit | d08d8434be0c85fb51f8998a2451d901798039b7 (patch) | |
tree | 55c59f4a3b26592486b82ecece81fe49f714390f /meta/recipes-extended/mdadm/files | |
parent | e6ca7cc3ed78373bc561b5e0b08bddd31106f102 (diff) | |
download | poky-d08d8434be0c85fb51f8998a2451d901798039b7.tar.gz |
mdadm: upgrade from 3.1.4 to the latest version 3.2.1
removed fix-z-now.patch since 3.2.1 has integrated it.
(From OE-Core rev: 818b71e7f4190d9fafbbbfa1b68ae1cc99de7c2d)
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/mdadm/files')
-rw-r--r-- | meta/recipes-extended/mdadm/files/fix-z-now.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/meta/recipes-extended/mdadm/files/fix-z-now.patch b/meta/recipes-extended/mdadm/files/fix-z-now.patch deleted file mode 100644 index 3cd606b528..0000000000 --- a/meta/recipes-extended/mdadm/files/fix-z-now.patch +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | Fix -z now is really a LD option, not a gcc option so use -Wl to pass it to LD | ||
2 | |||
3 | Created-by: Saul Wold <saul.wold@intel.com> | ||
4 | |||
5 | --- Makefile.orig 2010-08-31 13:52:46.277764099 -0700 | ||
6 | +++ Makefile 2010-08-31 14:02:28.218014078 -0700 | ||
7 | @@ -167,7 +167,7 @@ | ||
8 | |||
9 | # use '-z now' to guarantee no dynamic linker interactions with the monitor thread | ||
10 | mdmon : $(MON_OBJS) | ||
11 | - $(CC) $(LDFLAGS) $(MON_LDFLAGS) -z now -o mdmon $(MON_OBJS) $(LDLIBS) | ||
12 | + $(CC) $(LDFLAGS) $(MON_LDFLAGS) -Wl,-z,now -o mdmon $(MON_OBJS) $(LDLIBS) | ||
13 | msg.o: msg.c msg.h | ||
14 | |||
15 | test_stripe : restripe.c mdadm.h | ||