mdadm: add it, courtesy Dan J Williams, closes #265
authorKoen Kooi <koen@openembedded.org>
Sat, 27 Aug 2005 10:33:16 +0000 (10:33 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Sat, 27 Aug 2005 10:33:16 +0000 (10:33 +0000)
packages/mdadm/.mtn2git_empty [new file with mode: 0644]
packages/mdadm/mdadm-1.12.0/.mtn2git_empty [new file with mode: 0644]
packages/mdadm/mdadm-1.12.0/build_flags.patch [new file with mode: 0644]
packages/mdadm/mdadm-1.12.0/install.patch [new file with mode: 0644]
packages/mdadm/mdadm.inc [new file with mode: 0644]
packages/mdadm/mdadm_1.12.0.bb [new file with mode: 0644]

diff --git a/packages/mdadm/.mtn2git_empty b/packages/mdadm/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/mdadm/mdadm-1.12.0/.mtn2git_empty b/packages/mdadm/mdadm-1.12.0/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/mdadm/mdadm-1.12.0/build_flags.patch b/packages/mdadm/mdadm-1.12.0/build_flags.patch
new file mode 100644 (file)
index 0000000..38e1051
--- /dev/null
@@ -0,0 +1,19 @@
+--- mdadm-1.12.0/Makefile      2005-08-22 17:30:21.000000000 -0700
++++ mdadm-1.12.0/Makefile~     2005-08-22 17:30:14.000000000 -0700
+@@ -37,13 +37,13 @@
+ KLIBC_GCC = gcc -nostdinc -iwithprefix include -I$(KLIBC)/klibc/include -I$(KLIBC)/linux/include -I$(KLIBC)/klibc/arch/i386/include -I$(KLIBC)/klibc/include/bits32
+-CC = gcc
+-CXFLAGS = -ggdb
++CC := $(CC) 
++CXFLAGS = 
+ CWFLAGS = -Wall -Werror -Wstrict-prototypes
+ SYSCONFDIR = /etc
+ CONFFILE = $(SYSCONFDIR)/mdadm.conf
+ MAILCMD =/usr/sbin/sendmail -t
+-CFLAGS = $(CWFLAGS) -DCONFFILE=\"$(CONFFILE)\" $(CXFLAGS) -DSendmail=\""$(MAILCMD)"\"
++CFLAGS := $(CFLAGS) $(TARGET_CFLAGS) $(CWFLAGS) -DCONFFILE=\"$(CONFFILE)\" $(CXFLAGS) -DSendmail=\""$(MAILCMD)"\"
+ # If you want a static binary, you might uncomment these
+ # LDFLAGS = -static
diff --git a/packages/mdadm/mdadm-1.12.0/install.patch b/packages/mdadm/mdadm-1.12.0/install.patch
new file mode 100644 (file)
index 0000000..e778f9a
--- /dev/null
@@ -0,0 +1,17 @@
+--- mdadm-1.12.0/Makefile      2005-08-22 16:53:26.000000000 -0700
++++ mdadm-1.12.0/Makefile~     2005-08-22 16:53:04.000000000 -0700
+@@ -119,10 +119,10 @@
+ $(OBJS) : mdadm.h
+ install : mdadm mdadm.8 md.4 mdadm.conf.5
+-      $(INSTALL) -D $(STRIP) -m 755 mdadm $(DESTDIR)$(BINDIR)/mdadm
+-      $(INSTALL) -D -m 644 mdadm.8 $(DESTDIR)$(MAN8DIR)/mdadm.8
+-      $(INSTALL) -D -m 644 md.4 $(DESTDIR)$(MAN4DIR)/md.4
+-      $(INSTALL) -D -m 644 mdadm.conf.5 $(DESTDIR)$(MAN5DIR)/mdadm.conf.5
++      $(INSTALL) -D -s -m 755 mdadm $(DESTDIR)$(BINDIR)
++      $(INSTALL) -D -m 644 mdadm.8 $(DESTDIR)$(MAN8DIR)
++      $(INSTALL) -D -m 644 md.4 $(DESTDIR)$(MAN4DIR)
++      $(INSTALL) -D -m 644 mdadm.conf.5 $(DESTDIR)$(MAN5DIR)
+ clean : 
+       rm -f mdadm $(OBJS) core *.man mdadm.tcc mdadm.uclibc mdadm.static *.orig *.porig *.rej *.alt \
diff --git a/packages/mdadm/mdadm.inc b/packages/mdadm/mdadm.inc
new file mode 100644 (file)
index 0000000..977095c
--- /dev/null
@@ -0,0 +1,16 @@
+SECTION = "utils"
+DESCRIPTION = "mdadm is a tool for creating, managing and monitoring \
+device arrays using the "md" driver in Linux, also \
+known as Software RAID arrays."
+MAINTAINER = "Dan Williams <dan.j.williams@gmail.com>"
+LICENSE = "GPL"
+
+SRC_URI = "ftp://ftp.kernel.org/pub/linux/utils/raid/mdadm/${PN}-${PV}.tar.bz2"
+
+inherit autotools
+
+
+do_install() {
+       export STRIP=""
+       autotools_do_install
+}
diff --git a/packages/mdadm/mdadm_1.12.0.bb b/packages/mdadm/mdadm_1.12.0.bb
new file mode 100644 (file)
index 0000000..454c5d3
--- /dev/null
@@ -0,0 +1,4 @@
+include mdadm.inc
+PR = "r1"
+
+SRC_URI += " file://build_flags.patch;patch=1 "