Re: Debian Installer team monthly meeting minutes (20060429 meeting)

2006-05-13 Thread Geert Stappers
On Sat, May 13, 2006 at 12:14:12PM +0200, Samuel Thibault wrote:
 Frans Pop, le Sat 13 May 2006 09:30:07 +0200, a écrit :
  On Saturday 13 May 2006 08:33, Samuel Thibault wrote:
   Grmbl. Now that this available, I realize that brltty and gnopernicus
   must go into testing _together_, and gnopernicus waits for gnutls13
   (which has a RC bug) and avahi, which depends on qt4-x11, which depends
   on x11proto-core, i.e. Xorg 7.0...
  
   So this will unfortunately have to wait quite some time...
  
  Should not really be a problem as you can test the setup in unstable using 
  daily builds.
 
 Do all debian-installer builds only fetch from unstable?

Yes

Geert


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Debian Installer team monthly meeting minutes (20060429 meeting)

2006-05-13 Thread Samuel Thibault
tags 355851 + patch
thanks

Geert Stappers, le Sat 13 May 2006 13:08:31 +0200, a écrit :
 On Sat, May 13, 2006 at 12:14:12PM +0200, Samuel Thibault wrote:
  Frans Pop, le Sat 13 May 2006 09:30:07 +0200, a écrit :
   On Saturday 13 May 2006 08:33, Samuel Thibault wrote:
Grmbl. Now that this available, I realize that brltty and gnopernicus
must go into testing _together_, and gnopernicus waits for gnutls13
(which has a RC bug) and avahi, which depends on qt4-x11, which depends
on x11proto-core, i.e. Xorg 7.0...
   
So this will unfortunately have to wait quite some time...
   
   Should not really be a problem as you can test the setup in unstable 
   using 
   daily builds.
  
  Do all debian-installer builds only fetch from unstable?
 
 Yes

Ah ok.

We can add brltty-udeb to official images as soon as now then, since
as requested by debian-boot people, version 3.7.2-3 (unstable) of
brltty-udeb only starts when either udev detected a braille display, or
when the user appends a brltty= parameter to the kernel command line
at syslinux prompt, and then the framebuffer is disabled for letting
brltty read the console.

Here is a patch that adds brltty-udeb to debian-installer's cdrom,
netboot, and hd-media images, as well as serial kernel modules (they are
needed for braille displays).  Note: ia64 and alpha don't have built
usb-serial-modules yet, so I put their inclusion in comment, to be
uncommented when this is done.

Samuel
Index: build/pkg-lists/netboot64/common
===
--- build/pkg-lists/netboot64/common(révision 37265)
+++ build/pkg-lists/netboot64/common(copie de travail)
@@ -8,6 +8,7 @@
 download-installer
 cdebconf-newt-udeb
 cdebconf-text-udeb
+brltty-udeb
 installation-locale
 di-utils-terminfo
 preseed-common
Index: build/pkg-lists/netboot64/powerpc.cfg
===
--- build/pkg-lists/netboot64/powerpc.cfg   (révision 37265)
+++ build/pkg-lists/netboot64/powerpc.cfg   (copie de travail)
@@ -16,6 +16,8 @@
 floppy-modules-${kernel:Version}
 #fb-modules-${kernel:Version}
 usb-modules-${kernel:Version}
+serial-modules-${kernel:Version}
+usb-serial-modules-${kernel:Version}
 dhcp-client-udeb
 
 kbd-chooser
Index: build/pkg-lists/nativehd/common
===
--- build/pkg-lists/nativehd/common (révision 37265)
+++ build/pkg-lists/nativehd/common (copie de travail)
@@ -8,6 +8,8 @@
 net-retriever
 download-installer
 cdebconf-newt-udeb
+cdebconf-text-udeb
+brltty-udeb
 kbd-chooser
 installation-locale
 bogl-bterm-udeb
Index: build/pkg-lists/cdrom/ia64.cfg
===
--- build/pkg-lists/cdrom/ia64.cfg  (révision 37265)
+++ build/pkg-lists/cdrom/ia64.cfg  (copie de travail)
@@ -13,3 +13,5 @@
 usb-storage-modules-${kernel:Version}
 cdrom-core-modules-${kernel:Version}
 input-modules-${kernel:Version}
+serial-modules-${kernel:Version}
+#usb-serial-modules-${kernel:Version}
Index: build/pkg-lists/cdrom/alpha.cfg
===
--- build/pkg-lists/cdrom/alpha.cfg (révision 37265)
+++ build/pkg-lists/cdrom/alpha.cfg (copie de travail)
@@ -7,6 +7,8 @@
 cdrom-modules-${kernel:Version}
 ide-modules-${kernel:Version}
 ide-core-modules-${kernel:Version}
+serial-modules-${kernel:Version}
+#usb-serial-modules-${kernel:Version}
 kbd-chooser
 
 scsi-core-modules-${kernel:Version}
Index: build/pkg-lists/cdrom/i386.cfg
===
--- build/pkg-lists/cdrom/i386.cfg  (révision 37265)
+++ build/pkg-lists/cdrom/i386.cfg  (copie de travail)
@@ -14,6 +14,8 @@
 fb-modules-${kernel:Version}
 kbd-chooser
 usb-modules-${kernel:Version}
+serial-modules-${kernel:Version}
+usb-serial-modules-${kernel:Version}
 
 # Support for firewire cdroms (and disks, I think)
 # Off due to lack of space.
Index: build/pkg-lists/cdrom/common
===
--- build/pkg-lists/cdrom/common(révision 37265)
+++ build/pkg-lists/cdrom/common(copie de travail)
@@ -12,6 +12,8 @@
 bogl-bterm-udeb
 di-utils-terminfo
 cdebconf-newt-udeb
+cdebconf-text-udeb
+brltty-udeb
 usb-discover
 preseed-common
 initrd-preseed
Index: build/pkg-lists/cdrom/amd64.cfg
===
--- build/pkg-lists/cdrom/amd64.cfg (révision 37265)
+++ build/pkg-lists/cdrom/amd64.cfg (copie de travail)
@@ -13,6 +13,8 @@
 fb-modules-${kernel:Version}
 kbd-chooser
 usb-modules-${kernel:Version}
+serial-modules-${kernel:Version}
+usb-serial-modules-${kernel:Version}
 
 # Support for firewire cdroms (and disks, I think)
 # Off due to lack of space.
Index: build/pkg-lists/cdrom/powerpc.cfg
===
---