[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Bug#586870: partman-base: use a system-specific default filesystem



Hi,

On Wed, Aug 04, 2010 at 08:42:02PM +0200, Aurelien Jarno wrote:
> On Sun, Aug 01, 2010 at 04:30:17PM +0200, Samuel Thibault wrote:
> > Jeremie Koenig, le Wed 23 Jun 2010 06:53:23 +0200, a écrit :
> > > [complicated run-time patch for default filesystem selection]
> >
> > So, what do people think about it?  BSD people, too?
> 
> Do we really need to do that at runtime? There is already a code snippet
> doing that a build time in debian/rules (look for DEFAULT_FS), wouldn't
> it be better to update it for Hurd?

Oh, right. New patch attached.

Thanks,
-- 
Jeremie Koenig <jk@jk.fr.eu.org>
http://jk.fr.eu.org
Index: partman-base/debian/changelog
===================================================================
--- partman-base/debian/changelog	(revision 64063)
+++ partman-base/debian/changelog	(working copy)
@@ -1,10 +1,14 @@
 partman-base (143) UNRELEASED; urgency=low
 
+  [ Colin Watson ]
   * Use 'dh $@ --options' rather than 'dh --options $@', for
     forward-compatibility with debhelper v8.
 
- -- Colin Watson <cjwatson@debian.org>  Tue, 13 Jul 2010 10:31:10 +0100
+  [ Jeremie Koenig ]
+  * debian/rules: add a case for Hurd's DEFAULT_FS (closes: #586870).
 
+ -- Jeremie Koenig <jk@jk.fr.eu.org>  Wed, 11 Aug 2010 19:54:23 +0000
+
 partman-base (142) unstable; urgency=low
 
   [ Colin Watson ]
Index: partman-base/debian/rules
===================================================================
--- partman-base/debian/rules	(revision 64302)
+++ partman-base/debian/rules	(working copy)
@@ -10,6 +10,9 @@
 ifeq ($(ARCH_OS),kfreebsd)
 DEFAULT_FS=ufs
 endif
+ifeq ($(ARCH_OS),hurd)
+DEFAULT_FS=ext2
+endif
 
 PROVIDES=made-filesystems, mounted-partitions, partitioned-harddrives, created-fstab
 

Reply to: