Bug#701772: iso-scan: Loads wrong iso from usb drive

2014-01-20 Thread Martín Ferrari
Package: iso-scan Followup-For: Bug #701772 I am experiencing the same problem here, trying to prepare a USB stick with many installer images (i386, amd64, stable, testing..). Looking at iso-scan code I can see a few problems here: 1. Even if more than one ISO is found, the first pass will choos

Bug#624602: Acknowledgement (installation-reports: wireless-tools not installed after using wifi in install)

2011-04-29 Thread Martín Ferrari
Also, I just noticed that the used firmware (I had to copy it by hand into /lib/firmware) was not copied. I don't know if there is another way of handling non-free firmware at installation. -- Martín Ferrari -- To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org with a subje

Bug#436218: debootstrap: Wrong check for bunzip2

2007-08-06 Thread Martín Ferrari
Package: debootstrap Version: 1.0.1 Severity: normal Tags: patch In /usr/lib/debootstrap/functions, line 498: if [ -x /usr/bin/bunzip2 -a "$bz2md" != "" ]; then it checks for the wrong path, bunzip2 is installed in /bin. The obvious fix is: if [ -x /bin/bunzip2 -a "$bz2md" != "" ]; the