Re: libdebian-installer_0.99_source.changes ACCEPTED into unstable

2015-01-29 Thread Cyril Brulebois
Christian PERRIER  (2015-01-30):
> Quoting dann frazier (da...@dannf.org):
> > On Thu, Jan 29, 2015 at 07:01:32AM +0100, Christian PERRIER wrote:
> > > Unless I'm wrong, the released changelog hasn't been pushed in git nor
> > > has the 0.99 released been tagged.
> > 
> > I did push it - and I do see the tag:
> >   http://anonscm.debian.org/cgit/d-i/libdebian-installer.git/
> > 
> > But perhaps I did something incorrectly? Did you expect to see it on
> > the jessie branch? That branch looked pretty out of date, so I just
> > pushed to master.
> 
> ...which is fine...but I don't see anything on my local copies, even
> after a "git pull".
> 
> May anyone else confirm (KiBi?) so that I know if that's a problem
> only on my side?

master wasn't pushed to the repository, meaning that the (pushed) 0.99
tag isn't reachable by any of the branches you're fetching from the
repository. That explains why you're not seeing an updated master *and*
the (pushed) 0.99 tag. dann's pushing his local master branch should fix
both issues.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: libdebian-installer_0.99_source.changes ACCEPTED into unstable

2015-01-29 Thread Christian PERRIER
Quoting dann frazier (da...@dannf.org):
> On Thu, Jan 29, 2015 at 07:01:32AM +0100, Christian PERRIER wrote:
> > 
> > > Changes:
> > >  libdebian-installer (0.99) unstable; urgency=medium
> > >  .
> > >* Replace NULL terminator for the arm map_hardware table, accidentally
> > >  dropped in 0.92 (Closes: #776488).
> > 
> > 
> > Hello Dann,
> 
> hey Christian!
> 
> > Unless I'm wrong, the released changelog hasn't been pushed in git nor
> > has the 0.99 released been tagged.
> 
> I did push it - and I do see the tag:
>   http://anonscm.debian.org/cgit/d-i/libdebian-installer.git/
> 
> But perhaps I did something incorrectly? Did you expect to see it on
> the jessie branch? That branch looked pretty out of date, so I just
> pushed to master.

...which is fine...but I don't see anything on my local copies, even
after a "git pull".

May anyone else confirm (KiBi?) so that I know if that's a problem only on my
side?



signature.asc
Description: Digital signature


di-netboot-assistant is marked for autoremoval from testing

2015-01-29 Thread Debian testing autoremoval watch
di-netboot-assistant 0.38a is marked for autoremoval from testing on 2015-02-13

It is affected by these RC bugs:
759424: di-netboot-assistant: please update package for jessie / new syslinux


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yh3mf-8r...@franck.debian.org



Bug#775317: Depreciated kernel graphics params

2015-01-29 Thread jnqnfe
Control: tags -1 + patch

I've made a stab at writing a patch.

I'm new to the d-i codebase, and perl, and I don't have a test
environment set up to run and test the code, so please review carefully.

Two areas of concern I have:
1) While I understood the use of grub-gencfg well enough to implement
the fix within it and with the use of it, I was a little confused by the
block of code in build/config/x86.cfg, starting on line 211, which
instead is using 'bootvars-substitute' (as done for syslinux configs).
This suggests to me (without delving too deep into the code at this
stage) that there is a config file with possible KERNEL and INITRD
placeholders, possibly provided by debian-cd per the comment block
higher up. I can't find such a file or generation of such a file.
Perhaps the use of 'bootvars-substitute' instead of grub-gencfg is a
mistake here? I added substitution of VIDEO_MODE and VIDEO_MODE_GTK
placeholders with the gfxpayload setting, but this could cause the
elusive config files to break if these are currently present as kernel
params.
2) With a sid based live image produced with live build and using the
grub2 bootloader (live-build is where I'm doing a lot of dev work at the
moment), I manually loaded the graphical installer at 1024x768, and
found that the Jessie theme banner displayed at the top is blurry at
this resolution, whereas it is fine at 800x600. In this patch I set a
range of possible resolutions, with 1024x768 being the default. Unless
you're happy with the blurry image, either the default needs switching
down to 800x600 in this patch, or the image needs replacing with a
higher res copy.
commit 364b428be604a25064f90bb9146c62e962b2c8c5
Author: jnqnfe 
Date:   Fri Jan 30 04:04:41 2015 +

Implement use of grub gfxpayload setting instead of 'vga=' param

diff --git a/build/config/amd64.cfg b/build/config/amd64.cfg
index 62df865..50a7eef 100644
--- a/build/config/amd64.cfg
+++ b/build/config/amd64.cfg
@@ -17,6 +17,8 @@ SYSLINUX_CFG=standard
 # defined in graphics.nsi around line 58
 VIDEO_MODE="vga=788"
 VIDEO_MODE_GTK="vga=788"
+GRUB_VIDEO_MODE="1024x768x32,800x600x32,640x480x32,1024x768,800x600,640x480"
+GRUB_VIDEO_MODE_GTK="1024x768x32,800x600x32,640x480x32,1024x768,800x600,640x480"
 
 GRUB_EFI=y
 GRUB_PLATFORM=x86_64-efi
diff --git a/build/config/amd64/cdrom/gtk.cfg b/build/config/amd64/cdrom/gtk.cfg
index b915e3d..74342aa 100644
--- a/build/config/amd64/cdrom/gtk.cfg
+++ b/build/config/amd64/cdrom/gtk.cfg
@@ -11,6 +11,7 @@ EXTRANAME = gtk/
 KEEP_GI_LANGS = 1
 
 VIDEO_MODE=$(VIDEO_MODE_GTK)
+GRUB_VIDEO_MODE=$(GRUB_VIDEO_MODE_GTK)
 
 # All images that include cdebconf should include symbols needed by these
 # plugins.
diff --git a/build/config/amd64/hd-media/gtk.cfg 
b/build/config/amd64/hd-media/gtk.cfg
index db19305..5062c5b 100644
--- a/build/config/amd64/hd-media/gtk.cfg
+++ b/build/config/amd64/hd-media/gtk.cfg
@@ -10,6 +10,7 @@ TARGET = $(KERNEL) $(INITRD)
 KEEP_GI_LANGS = 1
 
 VIDEO_MODE=$(VIDEO_MODE_GTK)
+GRUB_VIDEO_MODE=$(GRUB_VIDEO_MODE_GTK)
 
 # All images that include cdebconf should include symbols needed by these
 # plugins.
diff --git a/build/config/amd64/netboot-gtk.cfg 
b/build/config/amd64/netboot-gtk.cfg
index 144f2fe..d05bc57 100644
--- a/build/config/amd64/netboot-gtk.cfg
+++ b/build/config/amd64/netboot-gtk.cfg
@@ -17,6 +17,7 @@ MANIFEST-MINIISO = "not so tiny CD image that boots the 
graphical netboot instal
 KEEP_GI_LANGS = 1
 
 VIDEO_MODE=$(VIDEO_MODE_GTK)
+GRUB_VIDEO_MODE=$(GRUB_VIDEO_MODE_GTK)
 
 # All images that include cdebconf should include symbols needed by these
 # plugins.
diff --git a/build/config/arm64.cfg b/build/config/arm64.cfg
index c45f4c4..dce179a 100644
--- a/build/config/arm64.cfg
+++ b/build/config/arm64.cfg
@@ -5,6 +5,12 @@ KERNELMAJOR = 2.6
 KERNELVERSION = $(LINUX_KERNEL_ABI)-arm64
 KERNELNAME = vmlinuz
 
+# The default video modes
+# These should be kept in sync with win32-loader's preseed line as
+# defined in graphics.nsi around line 58
+GRUB_VIDEO_MODE="1024x768x32,800x600x32,640x480x32,1024x768,800x600,640x480"
+GRUB_VIDEO_MODE_GTK="1024x768x32,800x600x32,640x480x32,1024x768,800x600,640x480"
+
 GRUB_EFI=y
 GRUB_PLATFORM=arm64-efi
 GRUB_EFI_NAME=aa64
@@ -33,6 +39,8 @@ arch_cd_info_dir: arm64_grub_efi
grub-gencfg \
KERNEL /%install%/vmlinuz \
INITRD /%install%/initrd.gz \
+   VIDEO_MODE $(GRUB_VIDEO_MODE) \
+   VIDEO_MODE_GTK $(GRUB_VIDEO_MODE_GTK) \
HEADER boot/arm64/grub/grub-efi.cfg \
> $(TEMP_CD_INFO_DIR)/grub/grub.cfg; \
cp -a $(GRUB_FONT) $(TEMP_CD_INFO_DIR)/grub/font.pf2; \
@@ -59,6 +67,8 @@ arch_miniiso: arm64_grub_efi
grub-gencfg \
KERNEL /linux \
INITRD /initrd.gz \
+   VIDEO_MODE $(GRUB_VIDEO_MODE) \
+   VIDEO_MODE_GTK $(GRUB_VIDEO_MODE_GTK) \
 

Processed: Re: Depreciated kernel graphics params

2015-01-29 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 + patch
Bug #775317 [debian-installer] Use of depreciated graphics param with grub2
Added tag(s) patch.

-- 
775317: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775317
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b775317.142259178314111.transcr...@bugs.debian.org



Bug#775317: Depreciated kernel graphics params

2015-01-29 Thread jnqnfe
Control: retitle -1 Use of depreciated graphics param with grub2

To reclarify the problem, now that I have investigated and solved it in
live-build: I noticed a message from grub2 about VGA=788 being a
depreciated graphics param, and being relatively new to linux I
mistakenly thought this was a kernel change which only grub2 was
displaying a message about but which applied to all bootloaders. Now I
have learnt that this isn't a true kernel param, it's used by the
bootloader, and it is simply that grub2 has a new way for users to
express graphics properties.

So, a fix is desirable to provide grub2 with graphics properties via the
new 'set gfxpayload' method.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54cae21d.9060...@gmail.com



Processed: Re: Depreciated kernel graphics params

2015-01-29 Thread Debian Bug Tracking System
Processing control commands:

> retitle -1 Use of depreciated graphics param with grub2
Bug #775317 [debian-installer] Depreciated kernel graphics params
Changed Bug title to 'Use of depreciated graphics param with grub2' from 
'Depreciated kernel graphics params'

-- 
775317: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775317
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b775317.142258231224934.transcr...@bugs.debian.org



debian-installer-netboot-images_20150107_amd64.changes ACCEPTED into unstable, unstable

2015-01-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 29 Jan 2015 10:34:48 +0100
Source: debian-installer-netboot-images
Binary: debian-installer-8-netboot-amd64 debian-installer-8-netboot-arm64 
debian-installer-8-netboot-armel debian-installer-8-netboot-armhf 
debian-installer-8-netboot-i386 debian-installer-8-netboot-kfreebsd-amd64 
debian-installer-8-netboot-kfreebsd-i386 debian-installer-8-netboot-mips 
debian-installer-8-netboot-mipsel debian-installer-8-netboot-powerpc 
debian-installer-8-netboot-ppc64el
Architecture: source all
Version: 20150107
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team 
Changed-By: Didier Raboud 
Description:
 debian-installer-8-netboot-amd64 - Debian-installer network boot images for 
amd64
 debian-installer-8-netboot-arm64 - Debian-installer network boot images for 
arm64
 debian-installer-8-netboot-armel - Debian-installer network boot images for 
armel
 debian-installer-8-netboot-armhf - Debian-installer network boot images for 
armhf
 debian-installer-8-netboot-i386 - Debian-installer network boot images for i386
 debian-installer-8-netboot-kfreebsd-amd64 - Debian-installer network boot 
images for kfreebsd-amd64
 debian-installer-8-netboot-kfreebsd-i386 - Debian-installer network boot 
images for kfreebsd-i386
 debian-installer-8-netboot-mips - Debian-installer network boot images for mips
 debian-installer-8-netboot-mipsel - Debian-installer network boot images for 
mipsel
 debian-installer-8-netboot-powerpc - Debian-installer network boot images for 
powerpc
 debian-installer-8-netboot-ppc64el - Debian-installer network boot images for 
ppc64el
Closes: 766960
Changes:
 debian-installer-netboot-images (20150107) unstable; urgency=low
 .
   * Update to 20150107 images.
 .
   [ Dmitrijs Ledkovs ]
   * Bump debhelper compat level to 9.
 .
   [ Didier Raboud ]
   * Update architectures' list, distribution codename and major version
 for Jessie (Closes: #766960)
   * Add a kfreebsd netboot directory postfix special-case
   * Add new matching lintian overrides
   * Move to one-digit versioning, aka from '-7.0-' to '-8-'
 .
   [ Cyril Brulebois ]
   * Update README to document fancy .bN suffix for d-i-n-i when d-i has
 +bN.
   * Add a check in get-images.sh to detect wrong binNMU versioning.
Checksums-Sha1:
 81e690867dd3d4b053d142d97f99c47a458be579 2672 
debian-installer-netboot-images_20150107.dsc
 ead7ad5ae45221519bed51b8bc74ee436ae451b4 5376 
debian-installer-netboot-images_20150107.tar.xz
 972c61d45c5a30d595089c950a3dee99b9f95f33 57118142 
debian-installer-8-netboot-amd64_20150107_all.deb
 b5114ebace2751eefa9385032af9af8d396cb22a 10258520 
debian-installer-8-netboot-arm64_20150107_all.deb
 8d49ac95f8b21457d016308bba063b8b66ad4962 47399238 
debian-installer-8-netboot-armel_20150107_all.deb
 e3f0f4cf5d4d776275af6857c813c98129045923 41338560 
debian-installer-8-netboot-armhf_20150107_all.deb
 35ebebeea7b5a09f50750a04c3236fb10e359f83 54836408 
debian-installer-8-netboot-i386_20150107_all.deb
 ebe678f3f6cba9e0ae3ab65cfa58cd152e1592a0 41877292 
debian-installer-8-netboot-kfreebsd-amd64_20150107_all.deb
 9ea7003284243b54ce1dddfd72ecec75741ab7d2 13027218 
debian-installer-8-netboot-kfreebsd-i386_20150107_all.deb
 0aa68d9b7e26b1b7a9a4b572576e50eb887ee052 39779074 
debian-installer-8-netboot-mips_20150107_all.deb
 276edd6044095ef4c564e261d65c577622ebb8bd 48039526 
debian-installer-8-netboot-mipsel_20150107_all.deb
 09c35bf121ffa0ac6105d663855ed2634cc69620 87776542 
debian-installer-8-netboot-powerpc_20150107_all.deb
 0939c1b582527a6d54ad2d277e8a7c08fd111a78 14145226 
debian-installer-8-netboot-ppc64el_20150107_all.deb
Checksums-Sha256:
 ff119eedad0f526ad0cc9f6671f2e7e7c7243be55674443cc75cc2969ea45818 2672 
debian-installer-netboot-images_20150107.dsc
 815732eb42753d4311cb01fdedb562589617bfc4aad843de4aaf4335c0d1ab0c 5376 
debian-installer-netboot-images_20150107.tar.xz
 b7a68490e7039b76d899ada2c88e2b20035c7f7357a151df72c5ef9d2fbccb1c 57118142 
debian-installer-8-netboot-amd64_20150107_all.deb
 a7512ce6d7b922b716917ba8e1dcc65f9f0bb43279b8cc7fafef5582131285b7 10258520 
debian-installer-8-netboot-arm64_20150107_all.deb
 730a545dc453e54110c3737d15bcfa34f918fbbf7d8d6a61fae6c63b9baf2cb9 47399238 
debian-installer-8-netboot-armel_20150107_all.deb
 4f6a5fafe7c0f3290291205fde33fd75746dc9bff75eefefc78ff7f39b83849b 41338560 
debian-installer-8-netboot-armhf_20150107_all.deb
 0efa413a3e6ebd03982914b3355be0e1a5c5a347921d4ff179da46ec597c67f4 54836408 
debian-installer-8-netboot-i386_20150107_all.deb
 bed559f888b2eb8fcd97211a7a11781e6af08102fc374b7b817fbff40b53b4c4 41877292 
debian-installer-8-netboot-kfreebsd-amd64_20150107_all.deb
 de39518f6074e921b88ffcc01a9f53062afcecbfda356db6567e21f5f123dd63 13027218 
debian-installer-8-netboot-kfreebsd-i386_20150107_all.deb
 7793b1f3f2fdff0a676ba79fd994f6783e1fc431a51f32199d6ad2f90065b7d2 39779074 
debian-installer-8-netboot-mips_20150107_all.deb
 090fc8ab06facf005c335a71d953c8fcbd0fb236336b

Bug#766960: marked as done (debian-installer-netboot-images: Please provide packages for Debian 8)

2015-01-29 Thread Debian Bug Tracking System
Your message dated Fri, 30 Jan 2015 00:00:43 +
with message-id 
and subject line Bug#766960: fixed in debian-installer-netboot-images 20150107
has caused the Debian Bug report #766960,
regarding debian-installer-netboot-images: Please provide packages for Debian 8
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
766960: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=766960
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Source: debian-installer-netboot-images
Version: 20130613+deb7u2.b3
Severity: important
User: debian-...@lists.debian.org
Usertags: debian-edu

Hi.  Will there be netboot images for Debian Jessie (version 8)
available?  We used the version 7 packages in Debian Edu Wheezy, and
miss the version 8 packages for our main server profile.  They are
useful for installations without Internet access.

-- 
Happy hacking
Petter Reinholdtsen
--- End Message ---
--- Begin Message ---
Source: debian-installer-netboot-images
Source-Version: 20150107

We believe that the bug you reported is fixed in the latest version of
debian-installer-netboot-images, which is due to be installed in the Debian FTP 
archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 766...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Didier Raboud  (supplier of updated 
debian-installer-netboot-images package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 29 Jan 2015 10:34:48 +0100
Source: debian-installer-netboot-images
Binary: debian-installer-8-netboot-amd64 debian-installer-8-netboot-arm64 
debian-installer-8-netboot-armel debian-installer-8-netboot-armhf 
debian-installer-8-netboot-i386 debian-installer-8-netboot-kfreebsd-amd64 
debian-installer-8-netboot-kfreebsd-i386 debian-installer-8-netboot-mips 
debian-installer-8-netboot-mipsel debian-installer-8-netboot-powerpc 
debian-installer-8-netboot-ppc64el
Architecture: source all
Version: 20150107
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team 
Changed-By: Didier Raboud 
Description:
 debian-installer-8-netboot-amd64 - Debian-installer network boot images for 
amd64
 debian-installer-8-netboot-arm64 - Debian-installer network boot images for 
arm64
 debian-installer-8-netboot-armel - Debian-installer network boot images for 
armel
 debian-installer-8-netboot-armhf - Debian-installer network boot images for 
armhf
 debian-installer-8-netboot-i386 - Debian-installer network boot images for i386
 debian-installer-8-netboot-kfreebsd-amd64 - Debian-installer network boot 
images for kfreebsd-amd64
 debian-installer-8-netboot-kfreebsd-i386 - Debian-installer network boot 
images for kfreebsd-i386
 debian-installer-8-netboot-mips - Debian-installer network boot images for mips
 debian-installer-8-netboot-mipsel - Debian-installer network boot images for 
mipsel
 debian-installer-8-netboot-powerpc - Debian-installer network boot images for 
powerpc
 debian-installer-8-netboot-ppc64el - Debian-installer network boot images for 
ppc64el
Closes: 766960
Changes:
 debian-installer-netboot-images (20150107) unstable; urgency=low
 .
   * Update to 20150107 images.
 .
   [ Dmitrijs Ledkovs ]
   * Bump debhelper compat level to 9.
 .
   [ Didier Raboud ]
   * Update architectures' list, distribution codename and major version
 for Jessie (Closes: #766960)
   * Add a kfreebsd netboot directory postfix special-case
   * Add new matching lintian overrides
   * Move to one-digit versioning, aka from '-7.0-' to '-8-'
 .
   [ Cyril Brulebois ]
   * Update README to document fancy .bN suffix for d-i-n-i when d-i has
 +bN.
   * Add a check in get-images.sh to detect wrong binNMU versioning.
Checksums-Sha1:
 81e690867dd3d4b053d142d97f99c47a458be579 2672 
debian-installer-netboot-images_20150107.dsc
 ead7ad5ae45221519bed51b8bc74ee436ae451b4 5376 
debian-installer-netboot-images_20150107.tar.xz
 972c61d45c5a30d595089c950a3dee99b9f95f33 57118142 
debian-installer-8-netboot-amd64_20150107_all.deb
 b5114ebace2751eefa9385032af9af8d396cb22a 10258520 
debian-installer-8-netboot-arm64_20150107_all.deb
 8d49ac95f8b21457d016308bba063b8b66ad4962 47399238 
debian-installer-8-netboot-armel_20150107_all.deb
 e3f0f4cf5d

testing DI RC-1 on single boot 2014 macbook air

2015-01-29 Thread john.tiger
we want to test the RC-1 installer on a single boot (no osx) 2014 13" 
macbook air.  Can anyone help us with the suggested partition layout ?  
Fedora 21 installs and has the following partitions:

sda1 hfs+
sda2 /boot ext4
sda3 /
etc.

the jessie install wants to see a /boot/efi partition

any suggestions ?


--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54cac367.8080...@gmail.com



Bug#776526: console.txt

2015-01-29 Thread Lars-Daniel Weber
Upon request, you can find console.txt in attachment.console-common  console-data/bootmap-md5sum string  
876d4b9e319d8b0e4f037405c5ce8393
console-common  console-data/keymap/family  select  qwertz
console-common  console-data/keymap/fullselect
console-common  console-data/keymap/ignored note
console-common  console-data/keymap/policy  select  Select keymap from arch 
list
console-common  console-data/keymap/powerpcadb  boolean
console-common  console-data/keymap/template/keymap select
console-common  console-data/keymap/template/layout select
console-common  console-data/keymap/template/variantselect
console-dataconsole-data/bootmap-md5sum string  
876d4b9e319d8b0e4f037405c5ce8393
console-dataconsole-data/keymap/azerty/belgian/apple_usb/keymap select
console-dataconsole-data/keymap/azerty/belgian/standard/keymap  select
console-dataconsole-data/keymap/azerty/belgian/variant  select
console-dataconsole-data/keymap/azerty/belgian/wang/keymap  select
console-dataconsole-data/keymap/azerty/french/apple_usb/keymap  select
console-dataconsole-data/keymap/azerty/french/same_as_x11__latin_9_/keymap  
select
console-dataconsole-data/keymap/azerty/french/variant   select
console-dataconsole-data/keymap/azerty/layout   select
console-dataconsole-data/keymap/dvorak/layout   select
console-dataconsole-data/keymap/dvorak/unknown/apple_usb/keymap select
console-dataconsole-data/keymap/dvorak/unknown/left_single-handed/keymap
select
console-dataconsole-data/keymap/dvorak/unknown/right_single-handed/keymap   
select
console-dataconsole-data/keymap/dvorak/unknown/standard/keymap  select
console-dataconsole-data/keymap/dvorak/unknown/variant  select
console-dataconsole-data/keymap/family  select  qwertz
console-dataconsole-data/keymap/fggiod/layout   select
console-dataconsole-data/keymap/fggiod/turkish/standard/keymap  select
console-dataconsole-data/keymap/fggiod/turkish/variant  select
console-dataconsole-data/keymap/fullselect
console-dataconsole-data/keymap/ignored note
console-dataconsole-data/keymap/policy  select  Select keymap from arch 
list
console-dataconsole-data/keymap/powerpcadb  boolean
console-dataconsole-data/keymap/qwerty/brazilian/br-latin1/keymap   select
console-dataconsole-data/keymap/qwerty/brazilian/standard/keymapselect
console-dataconsole-data/keymap/qwerty/brazilian/variantselect
console-dataconsole-data/keymap/qwerty/british/apple_usb/keymap select
console-dataconsole-data/keymap/qwerty/british/standard/keymap  select
console-dataconsole-data/keymap/qwerty/british/variant  select
console-dataconsole-data/keymap/qwerty/bulgarian/cp_1251_coding/keymap  
select
console-dataconsole-data/keymap/qwerty/bulgarian/standard/keymapselect
console-dataconsole-data/keymap/qwerty/bulgarian/variantselect
console-dataconsole-data/keymap/qwerty/byelorussian/standard/keymap select
console-dataconsole-data/keymap/qwerty/byelorussian/variant select
console-dataconsole-data/keymap/qwerty/canadian/english/keymap  select
console-dataconsole-data/keymap/qwerty/canadian/french/keymap   select
console-dataconsole-data/keymap/qwerty/canadian/multilingual/keymap select
console-dataconsole-data/keymap/qwerty/canadian/variant select
console-dataconsole-data/keymap/qwerty/czech/standard/keymapselect
console-dataconsole-data/keymap/qwerty/czech/variantselect
console-dataconsole-data/keymap/qwerty/danish/standard/keymap   select
console-dataconsole-data/keymap/qwerty/danish/variant   select
console-dataconsole-data/keymap/qwerty/dutch/standard/keymapselect
console-dataconsole-data/keymap/qwerty/dutch/variantselect
console-dataconsole-data/keymap/qwerty/estonian/standard/keymap select
console-dataconsole-data/keymap/qwerty/estonian/variant select
console-dataconsole-data/keymap/qwerty/finnish/apple_usb/keymap select
console-dataconsole-data/keymap/qwerty/finnish/old__obsolete_/keymap
select
console-dataconsole-data/keymap/qwerty/finnish/standard/keymap  select
console-dataconsole-data/keymap/qwerty/finnish/variant  select
console-dataconsole-data/keymap/qwerty/greek/standard/keymapselect
console-dataconsole-data/keymap/qwerty/greek/variantselect
console-dataconsole-data/keymap/qwerty/hebrew/standard/keymap   select
console-dataconsole-data/keymap/qwerty/hebrew/variant   select
console-dataconsole-data/keymap/qwerty/hungarian/variantselect
console-dataconsole-data/keymap/qwerty/icelandic/standard/keymapselect
console-dataconsole-data/keymap/qwerty/icelandic/variantselect
console-dataconsole-data/keymap/qwerty/italian/standard/keymap  selec

Re: libdebian-installer_0.99_source.changes ACCEPTED into unstable

2015-01-29 Thread dann frazier
On Thu, Jan 29, 2015 at 07:01:32AM +0100, Christian PERRIER wrote:
> 
> > Changes:
> >  libdebian-installer (0.99) unstable; urgency=medium
> >  .
> >* Replace NULL terminator for the arm map_hardware table, accidentally
> >  dropped in 0.92 (Closes: #776488).
> 
> 
> Hello Dann,

hey Christian!

> Unless I'm wrong, the released changelog hasn't been pushed in git nor
> has the 0.99 released been tagged.

I did push it - and I do see the tag:
  http://anonscm.debian.org/cgit/d-i/libdebian-installer.git/

But perhaps I did something incorrectly? Did you expect to see it on
the jessie branch? That branch looked pretty out of date, so I just
pushed to master.

> Though not urgent at all, can you fix this at some moment.
> 
> Thanks for your work on D-I (it has been s long:-))

Yeah - I do enjoy it when I have the opportunity :)



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150129201534.GB32024@fluid.dannf



Bug#776565: Booting does not currently work

2015-01-29 Thread martin f krafft
also sprach Cyril Brulebois  [2015-01-29 18:58 +0100]:
> I'm not sure it's reasonable to expect fixing di-n-a at this point of
> the release cycle, frankly.

Of course, but maybe the fix is trivial… on the other hand, I looked
and tried already… there is a patch. Lemme at least verify that one
on the weekend.

-- 
 .''`.   martin f. krafft  @martinkrafft
: :'  :  proud Debian developer
`. `'`   http://people.debian.org/~madduck
  `-  Debian - when you have better things to do than fixing systems
 
tempt not a desperate man.
-- william shakespeare


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Re: Bug#776565: Booting does not currently work

2015-01-29 Thread Christian PERRIER
Quoting Cyril Brulebois (k...@debian.org):

> Latest news (hrm) are:
>   [2013-07-17] Accepted 0.38a in unstable (low) (Christian Perrier)
>   [2013-07-28] di-netboot-assistant 0.38a MIGRATED to testing (Britney)

And that was probably a translation-only upload...:-)



signature.asc
Description: Digital signature


Bug#776565: Booting does not currently work

2015-01-29 Thread Cyril Brulebois
martin f krafft  (2015-01-29):
> also sprach Cyril Brulebois  [2015-01-29 16:44 +0100]:
> > Latest news (hrm) are:
> >   [2013-07-17] Accepted 0.38a in unstable (low) (Christian Perrier)
> >   [2013-07-28] di-netboot-assistant 0.38a MIGRATED to testing (Britney)
> > 
> > At this stage, it'd probably be a good idea to have it removed
> > from testing;
> 
> Yeah, except I'd love to have it. :(

Work on it through stretch, backport it?

> But it seems obviously broken. Let's wait another day or two and
> hope that maybe Christian, Franklin or Joey have a say?

I'm not sure it's reasonable to expect fixing di-n-a at this point of
the release cycle, frankly.

(I'd even go as far as moving the "not" a few words to the right.)

Of course, I'm happy to take other opinions anyway.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#776565: Booting does not currently work

2015-01-29 Thread martin f krafft
also sprach Cyril Brulebois  [2015-01-29 16:44 +0100]:
> Latest news (hrm) are:
>   [2013-07-17] Accepted 0.38a in unstable (low) (Christian Perrier)
>   [2013-07-28] di-netboot-assistant 0.38a MIGRATED to testing (Britney)
> 
> At this stage, it'd probably be a good idea to have it removed
> from testing;

Yeah, except I'd love to have it. :(
But it seems obviously broken. Let's wait another day or two and
hope that maybe Christian, Franklin or Joey have a say?

-- 
 .''`.   martin f. krafft  @martinkrafft
: :'  :  proud Debian developer
`. `'`   http://people.debian.org/~madduck
  `-  Debian - when you have better things to do than fixing systems
 
"this sentence contradicts itself -- no actually it doesn't."
 -- douglas hofstadter


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Bug#776565: Booting does not currently work

2015-01-29 Thread Cyril Brulebois
martin f krafft  (2015-01-29):
> Package: di-netboot-assistant
> Version: 0.38a
> Severity: serious

[…] 

> So far I have been unable to find *anything* to make
> di-netboot-assistant produce a usable TFTP directory layout, even
> for a single architecture, without having to hand-edit files for
> specific clients. Hence I think this is release-critical.

Latest news (hrm) are:
  [2013-07-17] Accepted 0.38a in unstable (low) (Christian Perrier)
  [2013-07-28] di-netboot-assistant 0.38a MIGRATED to testing (Britney)

At this stage, it'd probably be a good idea to have it removed from
testing; maybe someone will have some interest to get it back into shape
and maintain it over the stretch release cycle.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Processed (with 1 errors): your mail

2015-01-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> package console-data
Limiting to bugs with field 'package' containing at least one of 'console-data'
Limit currently set to 'package':'console-data'

> reassign 776526 console-setup 1.88
Bug #776526 [console-data] some packages don't depend on debconf
Bug reassigned from package 'console-data' to 'console-setup'.
package: "console-setup"' does not match at least one of "console-data"
Failed to clear fixed versions and reopen on 776526: limit failed for bugs: 
776526.

>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
776526: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776526
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.142254544012718.transcr...@bugs.debian.org



Bug#776566: Please cater to serial consoles

2015-01-29 Thread Lennart Sorensen
On Thu, Jan 29, 2015 at 04:05:45PM +0300, Michael Tokarev wrote:
> 29.01.2015 15:12, Samuel Thibault wrote:
> > martin f krafft, le Thu 29 Jan 2015 11:52:36 +0100, a écrit :
> >>   2. the boot: prompt appears on both, console and serial console,
> > 
> > Nack with my brltty maintainer hat: you don't want to send things on the
> > serial port without the user saying to do this. In the case of braille
> > devices, we have already seen some device being bricked by such behavior
> > because it unfortunately made the device enter a ROM-flash mode...
> 
> Some serial-connected models of Powercom UPSes will turn off power after
> seeing this sequence... ;)  I don't remember which code it is exactly,
> but it is a single char from lowercase latin letters.

Hmm, according to the driver the character is \xba (so not a standard
latin character) but of course get the baud rate wrong (which you almost
certainly will) and who knows what characters you end up sending.

So I agree, there are many reasons not to assume what is connected to
the serial port.

Devices can have lots of serial ports, and who is to say if any of them
should be a console or not, and even if they are, at what baud rate?
And certainly serial consoles are not a common use case on x86 machines.

-- 
Len Sorensen


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150129150911.gv30...@csclub.uwaterloo.ca



debian-installer-netboot-images_20150107_amd64.changes is NEW

2015-01-29 Thread Debian FTP Masters
binary:debian-installer-8-netboot-amd64 is NEW.
binary:debian-installer-8-netboot-arm64 is NEW.
binary:debian-installer-8-netboot-armel is NEW.
binary:debian-installer-8-netboot-armhf is NEW.
binary:debian-installer-8-netboot-i386 is NEW.
binary:debian-installer-8-netboot-kfreebsd-amd64 is NEW.
binary:debian-installer-8-netboot-kfreebsd-i386 is NEW.
binary:debian-installer-8-netboot-mips is NEW.
binary:debian-installer-8-netboot-mipsel is NEW.
binary:debian-installer-8-netboot-powerpc is NEW.
binary:debian-installer-8-netboot-ppc64el is NEW.

Your package has been put into the NEW queue, which requires manual action
from the ftpteam to process. The upload was otherwise valid (it had a good
OpenPGP signature and file hashes are valid), so please be patient.

Packages are routinely processed through to the archive, and do feel
free to browse the NEW queue[1].

If there is an issue with the upload, you will recieve an email from a
member of the ftpteam.

If you have any questions, you may reply to this email.

[1]: https://ftp-master.debian.org/new.html


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1ygp0y-0003sz...@franck.debian.org



Processing of debian-installer-netboot-images_20150107_amd64.changes

2015-01-29 Thread Debian FTP Masters
debian-installer-netboot-images_20150107_amd64.changes uploaded successfully to 
localhost
along with the files:
  debian-installer-netboot-images_20150107.dsc
  debian-installer-netboot-images_20150107.tar.xz
  debian-installer-8-netboot-amd64_20150107_all.deb
  debian-installer-8-netboot-arm64_20150107_all.deb
  debian-installer-8-netboot-armel_20150107_all.deb
  debian-installer-8-netboot-armhf_20150107_all.deb
  debian-installer-8-netboot-i386_20150107_all.deb
  debian-installer-8-netboot-kfreebsd-amd64_20150107_all.deb
  debian-installer-8-netboot-kfreebsd-i386_20150107_all.deb
  debian-installer-8-netboot-mips_20150107_all.deb
  debian-installer-8-netboot-mipsel_20150107_all.deb
  debian-installer-8-netboot-powerpc_20150107_all.deb
  debian-installer-8-netboot-ppc64el_20150107_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1ygovr-0001ga...@franck.debian.org



Bug#776566: Please cater to serial consoles

2015-01-29 Thread Michael Tokarev
29.01.2015 15:12, Samuel Thibault wrote:
> martin f krafft, le Thu 29 Jan 2015 11:52:36 +0100, a écrit :
>>   2. the boot: prompt appears on both, console and serial console,
> 
> Nack with my brltty maintainer hat: you don't want to send things on the
> serial port without the user saying to do this. In the case of braille
> devices, we have already seen some device being bricked by such behavior
> because it unfortunately made the device enter a ROM-flash mode...

Some serial-connected models of Powercom UPSes will turn off power after
seeing this sequence... ;)  I don't remember which code it is exactly,
but it is a single char from lowercase latin letters.

Thanks,

/mjt


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54ca3029.7010...@msgid.tls.msk.ru



Processed: merge

2015-01-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forcemerge 776565 759424
Bug #776565 [di-netboot-assistant] Booting does not currently work
Bug #776565 [di-netboot-assistant] Booting does not currently work
Added tag(s) moreinfo and patch.
Bug #759424 [di-netboot-assistant] di-netboot-assistant: please update package 
for jessie / new syslinux
Severity set to 'serious' from 'important'
Marked as found in versions di-netboot-assistant/0.38a.
Merged 759424 776565
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
759424: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=759424
776565: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776565
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.142253527331623.transcr...@bugs.debian.org



Maak kans op een iPad bij een abonnement op P-magazine

2015-01-29 Thread Mannenblad.be

Deze email nieuwsbrief werd in grafisch HTML formaat verzonden.
Als u deze tekstversie ziet, verkiest uw email programma "gewone tekst" emails.
U kan de originele nieuwsbrief online bekijken:
http://sendmail.itdude.be/zREOYE



GENIET VAN DEZE UNIEKE STUNT!

Neem een abonnement op P-magazine! en maak kans op een ipad Air 2 64GB
t.w.v. €599.

HOE? Het is zeer simpel, abonneer je nu op P-magazine en ontvang jouw
wedstrijddeelname!

P-Magazine:
Print + digitaal: 52 nrs.
voor €126 + 4 nrs. gratis
+ Maak kans op een iPad P-Magazine:
Digitaal: 104 nrs. (2 jaar)
voor €99
+ Maak kans op een iPad



Bug#776566: Please cater to serial consoles

2015-01-29 Thread Samuel Thibault
martin f krafft, le Thu 29 Jan 2015 11:52:36 +0100, a écrit :
>   2. the boot: prompt appears on both, console and serial console,

Nack with my brltty maintainer hat: you don't want to send things on the
serial port without the user saying to do this. In the case of braille
devices, we have already seen some device being bricked by such behavior
because it unfortunately made the device enter a ROM-flash mode...

Samuel


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150129121215.gi4...@type.bordeaux.inria.fr



Bug#776566: Please cater to serial consoles

2015-01-29 Thread martin f krafft
Package: di-netboot-assistant
Version: 0.38a
Severity: wishlist

There seems to be no way to elegantly handle serial console clients.
In the past, one already had to copy e.g.
daily/i386/pxelinux.cfg/default to the UUID-specific file of
a client, thereby hardcoding daily/i386 for this client and forgoing
the possibility of chosing via the menu. One also had to manually
add the "serial" and "console" parameters to this file, and change
the reference to menu.cfg to serial.cfg, which often also required
changes when e.g. ttyS1 was to be used, or vga=778 just did not
work.

Now it seems that serial.cfg is no longer provided at all.

It would be really great if di-netboot-install went one of the
following ways instead:

  1. a DHCP option flags a given client as having a serial console,
 causing the menu to be displayed on the specified serial
 console, as well as the kernel parameters set accordingly;

  2. the boot: prompt appears on both, console and serial console,
 and if  is received on the serial console, then that's
 where stuff continues, else a normal install happens.

  3. displaying the menu on both consoles and letting the user
 select "serial" if appropriate.

Thanks for your consideration.

-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_NZ, LC_CTYPE=en_NZ.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages di-netboot-assistant depends on:
ii  curl  7.38.0-4
ii  wget  1.16-3

Versions of packages di-netboot-assistant recommends:
ii  atftpd  0.7.git20120829-1

Versions of packages di-netboot-assistant suggests:
pn  dhcp3-server | udhcpd | dnsmasq  
pn  elilo
ii  syslinux 3:6.03+dfsg-5
ii  vim-addon-manager0.5.3

-- Configuration Files:
/etc/di-netboot-assistant/di-netboot-assistant.conf changed:
TFTP_ROOT=/srv/tftp
MIRROR_REGEXPS="s=://ftp.debian.org/=://ftp.stw-bonn.de/=
s=://ftp.ubuntu.com/=://ftp.hawo.stw.uni-erlangen.de/="
umask 0002

/etc/di-netboot-assistant/di-sources.list changed:
stable  amd64   
http://ftp.debian.org/dists/stable/main/installer-amd64/current/images/ 
netboot/netboot.tar.gz
stable  i386
http://ftp.debian.org/dists/stable/main/installer-i386/current/images/  
netboot/netboot.tar.gz
stable  ia64
http://ftp.debian.org/dists/stable/main/installer-ia64/current/images/  
netboot/netboot.tar.gz
stable  sparc   
http://ftp.debian.org/dists/stable/main/installer-sparc/current/images/ 
netboot/boot.img
stable-gtk  amd64   
http://ftp.debian.org/dists/stable/main/installer-amd64/current/images/ 
netboot/gtk/netboot.tar.gz
stable-gtk  i386
http://ftp.debian.org/dists/stable/main/installer-i386/current/images/  
netboot/gtk/netboot.tar.gz
wheezy  amd64   
http://ftp.debian.org/dists/wheezy/main/installer-amd64/current/images/ 
netboot/netboot.tar.gz
wheezy  i386
http://ftp.debian.org/dists/wheezy/main/installer-i386/current/images/  
netboot/netboot.tar.gz
wheezy  ia64
http://ftp.debian.org/dists/wheezy/main/installer-ia64/current/images/  
netboot/netboot.tar.gz
wheezy  sparc   
http://ftp.debian.org/dists/wheezy/main/installer-sparc/current/images/ 
netboot/boot.img
wheezy-gtk  amd64   
http://ftp.debian.org/dists/wheezy/main/installer-amd64/current/images/ 
netboot/gtk/netboot.tar.gz
wheezy-gtk  i386
http://ftp.debian.org/dists/wheezy/main/installer-i386/current/images/  
netboot/gtk/netboot.tar.gz
oldstable   amd64   
http://ftp.debian.org/dists/oldstable/main/installer-amd64/current/images/  
netboot/netboot.tar.gz
oldstable   i386
http://ftp.debian.org/dists/oldstable/main/installer-i386/current/images/   
netboot/netboot.tar.gz
oldstable   ia64
http://ftp.debian.org/dists/oldstable/main/installer-ia64/current/images/   
netboot/netboot.tar.gz
oldstable   sparc   
http://ftp.debian.org/dists/oldstable/main/installer-sparc/current/images/  
netboot/boot.img
oldstable-gtk   amd64   
http://ftp.debian.org/dists/oldstable/main/installer-amd64/current/images/  
netboot/gtk/netboot.tar.gz
oldstable-gtk   i386
http://ftp.debian.org/dists/oldstable/main/installer-i386/current/images/   
netboot/gtk/netboot.tar.gz
squeeze amd64   
http://ftp.debian.org/dists/squeeze/main/installer-amd64/current/images/
netboot/netboot.tar.gz
squeeze i386
http://ftp.debian.org/dists/squeeze/main/installer-i386/current/images/ 
netboot/netboot.tar.gz
squeeze ia64
http://ftp.debian.org/dists/squeeze/main/installer-ia64/current/images/ 
netboot/netboot.tar.gz
squeeze sparc   
http://ftp.debian.org/dists/squeeze/main/installer-sparc/current/images/
netboot/boot.img
squeeze-gtk amd64   
http://ftp.debian.org/dists/squeeze/main/installer-amd64/current/images/

Bug#776565: Booting does not currently work

2015-01-29 Thread martin f krafft
Package: di-netboot-assistant
Version: 0.38a
Severity: serious

The pxelinux.0 file installed by di-netboot-assistant does not work.
Before it even asks for pxelinux.cfg/* files, it seeks ldlinux.c32
(cf. #750586), but the menu defined in pxelinux.cfg/default
eventually sets the search path, so this is a catch-22 that somehow
needs to be broken.

pxelinux.0 should probably not need to load ldlinux.c32 at this
stage until the user made a selection in the menu.

If I symlink ldlinux.c32 into place, then it loads all boot-screen
files (according to the tftp logs), but before displaying a menu, it
then looks for libcom32.c32, which it does not
find, and hence fails to load
  ::/debian-installer/daily/i386/boot-screens/vesamenu.c32

Symlinking this file then exposes libutil.c32 as missing.

Note that the problem exists also with the pxelinux.0 file from the
pxelinux package (which you could be using instead anyway…)

Even if I skip the menu and tell clients to use
::/debian-installer/daily/i386/pxelinux.0 instead, the files
ldlinux.c32, libcom32.c32 and libutil.c32 are being sought from
::/debian-installer/daily/i386 instead of ./boot-screens, where they
live.

So far I have been unable to find *anything* to make
di-netboot-assistant produce a usable TFTP directory layout, even
for a single architecture, without having to hand-edit files for
specific clients. Hence I think this is release-critical.

-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_NZ, LC_CTYPE=en_NZ.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages di-netboot-assistant depends on:
ii  curl  7.38.0-4
ii  wget  1.16-3

Versions of packages di-netboot-assistant recommends:
ii  atftpd  0.7.git20120829-1

Versions of packages di-netboot-assistant suggests:
pn  dhcp3-server | udhcpd | dnsmasq  
pn  elilo
ii  syslinux 3:6.03+dfsg-5
ii  vim-addon-manager0.5.3

-- Configuration Files:
/etc/di-netboot-assistant/di-netboot-assistant.conf changed:
TFTP_ROOT=/srv/tftp
MIRROR_REGEXPS="s=://ftp.debian.org/=://ftp.stw-bonn.de/=
s=://ftp.ubuntu.com/=://ftp.hawo.stw.uni-erlangen.de/="
umask 0002

/etc/di-netboot-assistant/di-sources.list changed:
stable  amd64   
http://ftp.debian.org/dists/stable/main/installer-amd64/current/images/ 
netboot/netboot.tar.gz
stable  i386
http://ftp.debian.org/dists/stable/main/installer-i386/current/images/  
netboot/netboot.tar.gz
stable  ia64
http://ftp.debian.org/dists/stable/main/installer-ia64/current/images/  
netboot/netboot.tar.gz
stable  sparc   
http://ftp.debian.org/dists/stable/main/installer-sparc/current/images/ 
netboot/boot.img
stable-gtk  amd64   
http://ftp.debian.org/dists/stable/main/installer-amd64/current/images/ 
netboot/gtk/netboot.tar.gz
stable-gtk  i386
http://ftp.debian.org/dists/stable/main/installer-i386/current/images/  
netboot/gtk/netboot.tar.gz
wheezy  amd64   
http://ftp.debian.org/dists/wheezy/main/installer-amd64/current/images/ 
netboot/netboot.tar.gz
wheezy  i386
http://ftp.debian.org/dists/wheezy/main/installer-i386/current/images/  
netboot/netboot.tar.gz
wheezy  ia64
http://ftp.debian.org/dists/wheezy/main/installer-ia64/current/images/  
netboot/netboot.tar.gz
wheezy  sparc   
http://ftp.debian.org/dists/wheezy/main/installer-sparc/current/images/ 
netboot/boot.img
wheezy-gtk  amd64   
http://ftp.debian.org/dists/wheezy/main/installer-amd64/current/images/ 
netboot/gtk/netboot.tar.gz
wheezy-gtk  i386
http://ftp.debian.org/dists/wheezy/main/installer-i386/current/images/  
netboot/gtk/netboot.tar.gz
oldstable   amd64   
http://ftp.debian.org/dists/oldstable/main/installer-amd64/current/images/  
netboot/netboot.tar.gz
oldstable   i386
http://ftp.debian.org/dists/oldstable/main/installer-i386/current/images/   
netboot/netboot.tar.gz
oldstable   ia64
http://ftp.debian.org/dists/oldstable/main/installer-ia64/current/images/   
netboot/netboot.tar.gz
oldstable   sparc   
http://ftp.debian.org/dists/oldstable/main/installer-sparc/current/images/  
netboot/boot.img
oldstable-gtk   amd64   
http://ftp.debian.org/dists/oldstable/main/installer-amd64/current/images/  
netboot/gtk/netboot.tar.gz
oldstable-gtk   i386
http://ftp.debian.org/dists/oldstable/main/installer-i386/current/images/   
netboot/gtk/netboot.tar.gz
squeeze amd64   
http://ftp.debian.org/dists/squeeze/main/installer-amd64/current/images/
netboot/netboot.tar.gz
squeeze i386
http://ftp.debian.org/dists/squeeze/main/installer-i386/current/images/ 
netboot/netboot.tar.gz
squeeze ia64
http://ftp.debian.org/dists/squeeze/main/installer-ia64/current/images/ 
netboot/netboot.tar.gz
squeeze sparc   
http://ftp.debian.org

Bug#750586: Problem continues to exist

2015-01-29 Thread martin f krafft
Unfortunately, ldlinux.c32 is still being sought and not found. Any
news?

-- 
 .''`.   martin f. krafft  @martinkrafft
: :'  :  proud Debian developer
`. `'`   http://people.debian.org/~madduck
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Bug#776554: sulogin says "System Maintenance Mode", doesn't asks for a password if the /etc/passwd (or shadow) entry for the user is empty

2015-01-29 Thread Peng, Nancy (NSN - CN/Beijing)
Package: Busybox
Version: v1.22.1

If the /etc/passwd (or shadow) entry for the user is empty, I invoke `sulogin' 
without arguments from an ordinary shell
prompt, it prints `System Maintenance Mode', rather than to ask user for a 
password "Give root password for system maintenance
(or type Control-D for normal startup)"

Here is a transcript:

  $ sulogin
  System Maintenance Mode
  $ /sbin/hello
  System Maintenance Mode
  $


I suggest that sulogin always ask user for a password even if /etc/passwd (or 
shadow) entry for the user is empty.

Kernel version: Linux lrc-lsp-k2-a-0 3.10.47-rt50 #1 SMP PREEMPT RT Tue Dec 16 
16:04:37 EET 2014 armv7l GNU/Linux

Shared C library: libc-2.19-2014.04.so