Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package: dm dmraid
@ 2006-11-17 23:44 andersen at uclibc.org
  0 siblings, 0 replies; 2+ messages in thread
From: andersen at uclibc.org @ 2006-11-17 23:44 UTC (permalink / raw)
  To: buildroot

Author: andersen
Date: 2006-11-17 15:44:45 -0800 (Fri, 17 Nov 2006)
New Revision: 16574

Log:
minor version bumps


Added:
   trunk/buildroot/package/dmraid/dmraid.patch

Modified:
   trunk/buildroot/package/dm/dm.mk
   trunk/buildroot/package/dmraid/dmraid.mk


Changeset:
Modified: trunk/buildroot/package/dm/dm.mk
===================================================================
--- trunk/buildroot/package/dm/dm.mk	2006-11-17 23:17:02 UTC (rev 16573)
+++ trunk/buildroot/package/dm/dm.mk	2006-11-17 23:44:45 UTC (rev 16574)
@@ -24,7 +24,7 @@
 # USA
 
 DM_BASEVER=1.02
-DM_PATCH=10
+DM_PATCH=12
 DM_VERSION=$(DM_BASEVER).$(DM_PATCH)
 DM_SOURCE:=device-mapper.$(DM_VERSION).tgz
 DM_SITE:=ftp://sources.redhat.com/pub/dm
@@ -40,6 +40,7 @@
 
 $(DM_DIR)/.unpacked: $(DL_DIR)/$(DM_SOURCE)
 	$(DM_CAT) $(DL_DIR)/$(DM_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
+	toolchain/patch-kernel.sh $(DM_DIR) package/dm/ \*.patch
 	touch $(DM_DIR)/.unpacked
 
 $(DM_DIR)/.configured: $(DM_DIR)/.unpacked
@@ -67,7 +68,7 @@
 $(DM_DIR)/$(DM_LIBRARY): dm-build
 
 $(DM_STAGING_BINARY) $(DM_STAGING_LIBRARY): $(DM_DIR)/.configured
-	$(MAKE) CC=$(TARGET_CC) -C $(DM_DIR) DESTDIR=$(STAGING_DIR)
+	$(MAKE) CC=$(TARGET_CC) DESTDIR=$(STAGING_DIR) -C $(DM_DIR)
 	$(MAKE) -C $(DM_DIR) install prefix=$(STAGING_DIR)
 
 # Install dmsetup from staging to target

Modified: trunk/buildroot/package/dmraid/dmraid.mk
===================================================================
--- trunk/buildroot/package/dmraid/dmraid.mk	2006-11-17 23:17:02 UTC (rev 16573)
+++ trunk/buildroot/package/dmraid/dmraid.mk	2006-11-17 23:44:45 UTC (rev 16574)
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-DMRAID_VERSION=1.0.0.rc11
+DMRAID_VERSION=1.0.0.rc13
 DMRAID_SOURCE:=dmraid-$(DMRAID_VERSION).tar.bz2
 DMRAID_SITE:=http://people.redhat.com/~heinzm/sw/dmraid/src
 DMRAID_DIR:=$(BUILD_DIR)/dmraid/$(DMRAID_VERSION)
@@ -46,7 +46,7 @@
 	$(INSTALL) -m 0755 $? $@
 	$(INSTALL) -m 0755 package/dmraid/dmraid.init $(TARGET_DIR)/etc/init.d/dmraid
 
-dmraid: uclibc dm $(DMRAID_TARGET_BINARY)
+dmraid: uclibc dm zlib $(DMRAID_TARGET_BINARY)
 
 dmraid-clean:
 	rm $(DMRAID_TARGET_BINARY)

Added: trunk/buildroot/package/dmraid/dmraid.patch
===================================================================
--- trunk/buildroot/package/dmraid/dmraid.patch	2006-11-17 23:17:02 UTC (rev 16573)
+++ trunk/buildroot/package/dmraid/dmraid.patch	2006-11-17 23:44:45 UTC (rev 16574)
@@ -0,0 +1,20 @@
+--- 1.0.0.rc10/lib/device/scan.c.orig	2006-04-20 18:20:24.000000000 -0600
++++ 1.0.0.rc10/lib/device/scan.c	2006-04-20 18:21:00.000000000 -0600
+@@ -66,7 +66,7 @@
+ 	static char *ret = NULL, *sysfs_mp;
+ 
+ 	if (!(sysfs_mp = find_sysfs_mp(lc)))
+-		LOG_ERR(lc, NULL, "finding sysfs mount point");
++		{ log_notice(lc, "finding sysfs mount point"); return NULL; }
+ 
+ 	if ((ret = dbg_malloc(strlen(sysfs_mp) + strlen(path) + 1)))
+ 		sprintf(ret, "%s%s", sysfs_mp, path);
+@@ -308,7 +308,7 @@
+ 	} else {
+ 		sysfs = 0;
+ 		path = (char*) _PATH_DEV;
+-		log_print(lc, "carrying on with %s", path);
++		log_notice(lc, "carrying on with %s", path);
+ 	}
+ 
+ 	if (!(d = opendir(path))) {

^ permalink raw reply	[flat|nested] 2+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package: dm dmraid
@ 2009-03-04 13:22 jacmet at uclibc.org
  0 siblings, 0 replies; 2+ messages in thread
From: jacmet at uclibc.org @ 2009-03-04 13:22 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2009-03-04 13:22:44 +0000 (Wed, 04 Mar 2009)
New Revision: 25523

Log:
package: dm (and in turn dmraid) needs largefile support

Modified:
   trunk/buildroot/package/dm/Config.in
   trunk/buildroot/package/dmraid/Config.in


Changeset:
Modified: trunk/buildroot/package/dm/Config.in
===================================================================
--- trunk/buildroot/package/dm/Config.in	2009-03-04 13:22:38 UTC (rev 25522)
+++ trunk/buildroot/package/dm/Config.in	2009-03-04 13:22:44 UTC (rev 25523)
@@ -1,5 +1,9 @@
 config BR2_PACKAGE_DM
 	bool "dm"
+	depends on BR2_LARGEFILE
 	help
 	  The Device-mapper is a new component of the linux kernel that
 	  supports logical volume management. It is required by LVM2 and EVMS.
+
+comment "dm requires a toolchain with LARGEFILE support"
+	depends on !BR2_LARGEFILE

Modified: trunk/buildroot/package/dmraid/Config.in
===================================================================
--- trunk/buildroot/package/dmraid/Config.in	2009-03-04 13:22:38 UTC (rev 25522)
+++ trunk/buildroot/package/dmraid/Config.in	2009-03-04 13:22:44 UTC (rev 25523)
@@ -3,6 +3,7 @@
 
 config BR2_PACKAGE_DMRAID
 	bool "dmraid"
+	depends on BR2_LARGEFILE
 	select BR2_PACKAGE_DM
 	help
 	  dmraid discovers, activates, deactivates and displays properties
@@ -10,3 +11,6 @@
 
 	  dmraid uses the Linux device-mapper to create devices with
 	  respective mappings for the ATARAID sets discovered.
+
+comment "dmraid requires a toolchain with LARGEFILE support"
+	depends on !BR2_LARGEFILE

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-03-04 13:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-17 23:44 [Buildroot] svn commit: trunk/buildroot/package: dm dmraid andersen at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2009-03-04 13:22 jacmet at uclibc.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox