Bug#598653: installation-reports: debian squeeze hang at boot time when starting Xwindow: missing firmware for ati radeon card
On Fri, Oct 1, 2010 at 06:09:42 +0200, Christian PERRIER wrote: > Quoting Julien Cristau (jcris...@debian.org): > > reassign 598653 debian-installer > > kthxbye > > > > On Thu, Sep 30, 2010 at 22:03:27 +0200, Christian PERRIER wrote: > > > > > Reassigning to the right package...Thanks for your report! > > > > > NAK, installing firmware would be something for the installer to do, not > > for xorg. X driver packages already suggest the appropriate firmware > > packages, they can't really do anything more than that afaik. > > So, I suppose this requires an entirely new udeb, meant to install > firmware for hardware such as video cards, etc. and run it at the end > of the install process. The current packages such as hwdetect are > meant to run at the beginning of the process, when it's needed to > detect wireless cards or disk drives. and when nobody really cares > about video cards. > > Just a wild guess: I know nearly nothing about all this crap..:-) > I guess the problem is that the installer doesn't have the drm modules so it doesn't know what firmware they might need? Ideally this would be handled together with other firmware installation. That said, now that I look at the bug title, X shouldn't hang even if firmware is missing, it should be able to start without acceleration. I think. Might warrant a separate bug report against xserver-xorg-video-radeon, if there isn't one already. Cheers, Julien signature.asc Description: Digital signature
Processing of cdebconf-terminal_0.9_i386.changes
cdebconf-terminal_0.9_i386.changes uploaded successfully to localhost along with the files: cdebconf-terminal_0.9.dsc cdebconf-terminal_0.9.tar.gz cdebconf-gtk-terminal_0.9_i386.udeb cdebconf-newt-terminal_0.9_i386.udeb 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: http://lists.debian.org/e1p1e3n-000544...@franck.debian.org
Bug#598281: marked as done (Needs porting to vte 0.26)
Your message dated Fri, 01 Oct 2010 11:47:05 + with message-id and subject line Bug#598281: fixed in cdebconf-terminal 0.9 has caused the Debian Bug report #598281, regarding Needs porting to vte 0.26 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.) -- 598281: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=598281 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: cdebconf-terminal Version: 0.8 Severity: wishlist Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu ubuntu-patch maverick Hi there cdebconf-terminal doesn't build anymore in Ubuntu since vte 0.26; I wrote the attached patch, but only build-tested it; would love if someone could try it out. Thanks! -- Loïc Minier diff -Nru cdebconf-terminal-0.8/debian/changelog cdebconf-terminal-0.8ubuntu1dooz1/debian/changelog --- cdebconf-terminal-0.8/debian/changelog 2010-07-11 10:29:39.0 +0200 +++ cdebconf-terminal-0.8ubuntu1dooz1/debian/changelog 2010-09-28 05:01:40.0 +0200 @@ -1,3 +1,13 @@ +cdebconf-terminal (0.9) UNRELEASED; urgency=low + + * Port to vte >= 0.26. +* Makefile.in: also pass $(VTE_CFLAGS) when building gtk-*.c files. +* Bump libvte-dev build-dep to >= 0.16.15 for VTE_CHECK_VERSION(). +* gtk-plugin-terminal.c: use vte_terminal_fork_command_full() instead of + vte_terminal_fork_command() with newer vtes. + + -- Loïc Minier Tue, 28 Sep 2010 01:15:06 +0200 + cdebconf-terminal (0.8) unstable; urgency=low [ Otavio Salvador/Christian Perrier ] diff -Nru cdebconf-terminal-0.8/debian/control cdebconf-terminal-0.8ubuntu1dooz1/debian/control --- cdebconf-terminal-0.8/debian/control 2010-03-24 06:00:38.0 +0100 +++ cdebconf-terminal-0.8ubuntu1dooz1/debian/control 2010-09-28 04:38:37.0 +0200 @@ -3,7 +3,7 @@ Section: debian-installer Maintainer: Debian Install System Team Uploaders: Jérémy Bobbio , Colin Watson , Christian Perrier -Build-Depends: debhelper (>= 7.0.50~), po-debconf (>= 0.5.0), libdebian-installer4-dev, libdebconfclient0-dev (>= 0.146), libnewt-dev, libgtk2.0-dev (>= 2.18.7-2), libvte-dev (>> 0.16.14-1) +Build-Depends: debhelper (>= 7.0.50~), po-debconf (>= 0.5.0), libdebian-installer4-dev, libdebconfclient0-dev (>= 0.146), libnewt-dev, libgtk2.0-dev (>= 2.18.7-2), libvte-dev (>> 0.16.15) Vcs-Svn: svn://svn.debian.org/d-i/trunk/packages/cdebconf-terminal Package: cdebconf-gtk-terminal diff -Nru cdebconf-terminal-0.8/gtk-plugin-terminal.c cdebconf-terminal-0.8ubuntu1dooz1/gtk-plugin-terminal.c --- cdebconf-terminal-0.8/gtk-plugin-terminal.c 2009-07-21 07:57:01.0 +0200 +++ cdebconf-terminal-0.8ubuntu1dooz1/gtk-plugin-terminal.c 2010-09-28 04:58:16.0 +0200 @@ -14,6 +14,11 @@ #include #include +#if VTE_CHECK_VERSION(0,26,0) +/* whether vte has vte_terminal_fork_command_full() */ +#define VTE_HAS_NEW_FORK +#endif + extern char ** environ; #define DEFAULT_COMMAND_LINE "/bin/sh" @@ -27,16 +32,20 @@ struct frontend * fe; GtkWidget * goback_button; VteTerminal * terminal; +#ifdef VTE_HAS_NEW_FORK char * command; +#endif char ** argv; char ** environ; }; static void destroy_terminal(struct terminal * terminal_data) { +#ifdef VTE_HAS_NEW_FORK if (NULL != terminal_data->command) { g_free(terminal_data->command); } +#endif if (NULL != terminal_data->argv) { g_strfreev(terminal_data->argv); } @@ -94,11 +103,13 @@ g_critical("g_strsplit_set failed."); return FALSE; } +#ifdef VTE_HAS_NEW_FORK terminal_data->command = g_strdup(terminal_data->argv[0]); if (NULL == terminal_data->command) { -g_critical("g_strplit_set failed."); +g_critical("g_strdup failed."); return FALSE; } +#endif return TRUE; } @@ -340,10 +351,22 @@ { pid_t pid; +#if VTE_CHECK_VERSION(0,26,0) +vte_terminal_fork_command_full( +terminal_data->terminal, +VTE_PTY_NO_LASTLOG | VTE_PTY_NO_UTMP | VTE_PTY_NO_WTMP, +"/", +terminal_data->argv, terminal_data->environ, +0, /* no special spawn_flags */ +NULL, NULL, /* no child_setup function nor child_setup_data */ +&pid, +NULL /* extended error */); +#else pid = vte_terminal_fork_command( terminal_data->terminal, terminal_data->command, terminal_data->argv, terminal_data->environ, "/", FALSE /* no lastlog */, FALSE /* no utmp */, FALSE /* no wtmp */); +#endif if (0 == pid) { g_critical("vte_terminal_fork_command failed."); r
cdebconf-terminal_0.9_i386.changes ACCEPTED into unstable
Accepted: cdebconf-gtk-terminal_0.9_i386.udeb to main/c/cdebconf-terminal/cdebconf-gtk-terminal_0.9_i386.udeb cdebconf-newt-terminal_0.9_i386.udeb to main/c/cdebconf-terminal/cdebconf-newt-terminal_0.9_i386.udeb cdebconf-terminal_0.9.dsc to main/c/cdebconf-terminal/cdebconf-terminal_0.9.dsc cdebconf-terminal_0.9.tar.gz to main/c/cdebconf-terminal/cdebconf-terminal_0.9.tar.gz Override entries for your package: cdebconf-gtk-terminal_0.9_i386.udeb - extra debian-installer cdebconf-newt-terminal_0.9_i386.udeb - extra debian-installer cdebconf-terminal_0.9.dsc - source debian-installer Announcing to debian-devel-chan...@lists.debian.org Closing bugs: 598281 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1p1e4v-00057g...@franck.debian.org
Bug#598729: debootstrap: Does not use correct data.tar in .deb ar extractor
Package: debootstrap Version: 1.0.25 Tags: patch Hi! Commit r61340 introduced a small bug to the ar extractor for non-gz data.tar in .debs. Attached is a trivial fix for that. thanks, guillem Index: functions === --- functions (revision 64876) +++ functions (working copy) @@ -777,7 +777,7 @@ esac if type $cat_cmd >/dev/null 2>&1; then - ar -p "$pkg" data.tar.gz | $cat_cmd | tar -xf - + ar -p "$pkg" "$tarball" | $cat_cmd | tar -xf - else error 1 UNPACKCMDUNVL "The $cat_cmd is not available on the system" fi
d-i manual: Spanish conversion to gettext
Hello: I finished the migration (upload due) of the Spanish translation to gettext. I would like to note that ./update_po $lang needs to be run after ./create_po $lang during migration to obtain complete PO msg headers. This is not specified in the instrucions or email the docs point to. Otherwise, the documentation does not build. Example: only ./create_po #: index.docbook:7 msgid "How the Installer Works" msgstr "Funcionamiento del instalador" ... ./create_po + ./update_po #. Tag: title #: using-d-i.xml:7 #, no-c-format msgid "How the Installer Works" msgstr "Funcionamiento del instalador" I also found some problemas during conversion, such as the gratitious ocurrence of in msgs where they are not supposed to be. This is easy to fix by the translator. My questions are: 1. May I enrichen the info in doc/translation_po.txt? Might be useful if more langteams follow this path. I'll basically use the email, plus caveats I found out during conversion. 2. Should I tell this list after I "svn del es && svn add po/es", or does the automatic build system take care automatically of the change and no more action is needed? Moving to other issue, some builds fail for every lang lately, I guess it has do to with changes in the docs and that you know it. Just felt I should mention. Regarding the questions, please CC as I'm not suscribed to this particular list. Regards and thanks for the work, -- Omar Campagne Polaino -- To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20101001151837.gb2...@gmail.com
Bug#598765: debian-installer: FTBFS on alpha: needs mirror update?
Source: debian-installer Version: 20100912 Severity: important User: debian-al...@lists.debian.org Usertags: ftbfs Hi, your package no longer builds on alpha: | make[7]: `sources.list.udeb' is up to date. | Ign copy: localudebs/ Release.gpg | Ign copy:/build/buildd-debian-installer_20100912-alpha-abF96C/debian-installer-20100912/build/ localudebs/ Translation-en | Ign copy: localudebs/ Release | Ign copy: localudebs/ Packages | Get:1 copy: localudebs/ Packages [20B] | Get:2 http://ftp.de.debian.org squeeze Release.gpg [835B] | Ign http://ftp.de.debian.org/debian/ squeeze/main/debian-installer Translation-en | Get:3 http://ftp.de.debian.org squeeze Release [89.9kB] | Get:4 http://incoming.debian.org squeeze Release.gpg [835B] | Ign http://incoming.debian.org/debian/ squeeze/main/debian-installer Translation-en | Get:5 http://incoming.debian.org squeeze Release [89.9kB] | Fetched 182kB in 0s (239kB/s) | W: Failed to fetch http://ftp.de.debian.org/debian/dists/squeeze/Release Unable to find expected entry main/debian-installer/binary-alpha/Packages in Meta-index file (malformed Release file?) | | W: Failed to fetch http://incoming.debian.org/debian/dists/squeeze/Release Unable to find expected entry main/debian-installer/binary-alpha/Packages in Meta-index file (malformed Release file?) | | E: Some index files failed to download, they have been ignored, or old ones used instead. | Failed to update the Packages file. This usually means either of: | | A) sources.list.udeb does not contain a valid repository. |You can override the generated sources.list.udeb |with sources.list.udeb.local if you haven't done so yet. | | B) The repository in sources.list.udeb is not reachable. |If you are not working online, use 'export ONLINE=n' to skip updating |the Packages files. Beware that this can result in images with |out-of-date packages and should be used for private development only. | dh_testroot | get-packages udeb | make[8]: `sources.list.udeb' is up to date. | Ign copy: localudebs/ Release.gpg | Ign copy:/build/buildd-debian-installer_20100912-alpha-abF96C/debian-installer-20100912/build/ localudebs/ Translation-en | Ign copy: localudebs/ Release | Ign copy: localudebs/ Packages/DiffIndex | Ign copy: localudebs/ Packages | Get:1 copy: localudebs/ Packages [20B] | Hit http://ftp.de.debian.org squeeze Release.gpg | Ign http://ftp.de.debian.org/debian/ squeeze/main/debian-installer Translation-en | Hit http://ftp.de.debian.org squeeze Release | Hit http://incoming.debian.org squeeze Release.gpg | Ign http://incoming.debian.org/debian/ squeeze/main/debian-installer Translation-en | Hit http://incoming.debian.org squeeze Release | Fetched 20B in 0s (60B/s) | W: Failed to fetch http://ftp.de.debian.org/debian/dists/squeeze/Release Unable to find expected entry main/debian-installer/binary-alpha/Packages in Meta-index file (malformed Release file?) | | W: Failed to fetch http://incoming.debian.org/debian/dists/squeeze/Release Unable to find expected entry main/debian-installer/binary-alpha/Packages in Meta-index file (malformed Release file?) | | E: Some index files failed to download, they have been ignored, or old ones used instead. | make[7]: *** [stamps/get_udebs-cdrom-stamp] Error 1 | make[6]: *** [_build] Error 2 | make[5]: *** [flavour_build] Error 2 | make[4]: *** [medium_build] Error 2 | make[3]: *** [subarch_build] Error 2 | make[2]: *** [all_build] Error 2 | make[1]: *** [build-images] Error 2 | make: *** [install] Error 2 | dpkg-buildpackage: error: /usr/bin/fakeroot debian/rules binary-arch gave error exit status 2 | Failed to update the Packages file. This usually means either of: | | A) sources.list.udeb does not contain a valid repository. |You can override the generated sources.list.udeb |with sources.list.udeb.local if you haven't done so yet. | | B) The repository in sources.list.udeb is not reachable. |If you are not working online, use 'export ONLINE=n' to skip updating |the Packages files. Beware that this can result in images with |out-of-date packages and should be used for private development only. | make[2]: Leaving directory `/build/buildd-debian-installer_20100912-alpha-abF96C/debian-installer-20100912/build' | make[1]: Leaving directory `/build/buildd-debian-installer_20100912-alpha-abF96C/debian-installer-20100912' Full build logs: https://buildd.debian.org/status/package.php?p=debian-installer Sounds like alpha might have been dropped from some mirrors? Mraw, KiBi. -- To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20101001115410.7660.97161.report...@bowmore
Bug#598601: Now successfull install PDX-057T-5A
Subject: installation-reports: PDX-057T-5A successful install Package: installation-reports Severity: minor *** Please type your report below this line *** Installation successfull with some tweaking. This host has problems with naming memory cards and USB-memory sticks. Had to reset BIOS to default values and do the two changes manual suggests for Linux installs: Please forced the IDE setting in BIOS to PIO mode before install Linux on PDX-057T as follows: 1-Go to the advanced BIOS setting and make the âOnboard IDE Operate Modeâ is âLegacy Modeâ 2-Go to the PCI/PnP and make the âPCI IDE BusMasterâ is âDisable" [http://www.microcomputersystems.com/PDX-057T_UM_v1r0A.pdf] Then SD-card showed up as /dev/sdb and USB stick as /dev/sda. Boot media was USB stick, installed on SD-card. I guessed boot fails because SD card becomes /dev/sda when USB-stick is removed, so at the boot after installation I changed GRUB2 config, changed set root='(hd1,msdos1)' to set root='(hd0,msdos1)' Now panel pc works fine. -- Package-specific info: Boot method: USB memory stick Image version: http://people.debian.org/~joeyh/d-i/images/daily/hd-media/ 30-Sep-2010 Date: Machine: PDX-057T-5A panel pc Vortex86 SoC Partitions: Base System Installation Checklist: [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it Initial boot: [O] Detect network card:[O] Configure network: [O] Detect CD: [ ] Load installer modules: [O] Detect hard drives: [O] Partition hard drives: [O] Install base system:[O] Clock/timezone setup: [O] User/password setup:[O] Install tasks: [O] Install boot loader:[O] Overall install:[O] Comments/Problems: -- Please make sure that the hardware-summary log file, and any other installation logs that you think would be useful are attached to this report. Please compress large files using gzip. Once you have filled out this report, mail it to sub...@bugs.debian.org. == Installer lsb-release: == DISTRIB_ID=Debian DISTRIB_DESCRIPTION="Debian GNU/Linux installer" DISTRIB_RELEASE="6.0 (squeeze) - installer build 20100930-04:03" X_INSTALLATION_MEDIUM=hd-media == Installer hardware-summary: == uname -a: Linux debian-paneeli 2.6.32-5-486 #1 Thu Aug 12 12:59:56 UTC 2010 i586 GNU/Linux lspci -knn: 00:00.0 Host bridge [0600]: RDC Semiconductor, Inc. R6021 Host Bridge [17f3:6021] (rev 01) lspci -knn: 00:03.0 VGA compatible controller [0300]: XGI Technology Inc. (eXtreme Graphics Innovation) Z7/Z9 (XG20 core) [18ca:0020] lspci -knn: Subsystem: XGI Technology Inc. (eXtreme Graphics Innovation) Z7/Z9 (XG20 core) [18ca:0020] lspci -knn: 00:07.0 ISA bridge [0601]: RDC Semiconductor, Inc. R6031 ISA Bridge [17f3:6031] (rev 01) lspci -knn: 00:08.0 Ethernet controller [0200]: RDC Semiconductor, Inc. R6040 MAC Controller [17f3:6040] lspci -knn: Kernel driver in use: r6040 lspci -knn: 00:0a.0 USB Controller [0c03]: RDC Semiconductor, Inc. R6060 USB 1.1 Controller [17f3:6060] (rev 11) lspci -knn: Kernel driver in use: ohci_hcd lspci -knn: 00:0a.1 USB Controller [0c03]: RDC Semiconductor, Inc. R6061 USB 2.0 Controller [17f3:6061] (rev 02) lspci -knn: Kernel driver in use: ehci_hcd lspci -knn: 00:0b.0 USB Controller [0c03]: RDC Semiconductor, Inc. R6060 USB 1.1 Controller [17f3:6060] (rev 11) lspci -knn: Kernel driver in use: ohci_hcd lspci -knn: 00:0b.1 USB Controller [0c03]: RDC Semiconductor, Inc. R6061 USB 2.0 Controller [17f3:6061] (rev 02) lspci -knn: Kernel driver in use: ehci_hcd lspci -knn: 00:0c.0 Mass storage controller [0180]: RDC Semiconductor, Inc. R1010 IDE Controller [17f3:1010] (rev 13) lspci -knn: Subsystem: RDC Semiconductor, Inc. R1010 IDE Controller [17f3:1010] lspci -knn: Kernel driver in use: pata_it821x usb-list: usb-list: Bus 01 Device 01: EHCI Host Controller [1d6b:0002] usb-list:Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 00 usb-list:Manufacturer: Linux 2.6.32-5-486 ehci_hcd usb-list:Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub usb-list: usb-list: Bus 02 Device 01: EHCI Host Controller [1d6b:0002] usb-list:Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Protocol 00 usb-list:Manufacturer: Linux 2.6.32-5-486 ehci_hcd usb-list:Interface 00: Class 09(hub ) Subclass 00 Protocol 00 Driver hub usb-list: usb-list: Bus 02 Device 02: DataTraveler 2.0 [0951:1603] usb-list:Level 01 Parent 01 Port 01 Class 00(>ifc ) Subclass 00 Protocol 00 usb-list:Manufacturer: Kingston usb-list:Interface 00: Class 08(mstor) Subclass 06 Protocol 50 Driver usb-storage usb-list: usb-list: Bus 03 Device 01: OHCI Host Controller [1d6b:0001] usb-list:Level 00 Parent 00 Port 00 Class 09(hub ) Subclass 00 Proto
Bug#524342: Same problem here, unable to install Grub
Hi there, System: Gigabyte GA-M57SLI-S4 mainboard with NVIDIA MCP55 3x Samsung EcoGreen f3 1.5 TB Trying to install Debian Squeeze on a Raid1 ext3 of 2x 40GB partitions at the start of the Samsung EcoGreen drives with one hot spare (third drive, same partition). Grub2 won't install on /dev/sda (first hard drive). After trying to install Grub2 I tried Grub-legacy and Lilo, but all failed. I was unable to complete installation. I used d-i from 26th of September (20100926) and from 1st of October (20101001). Bye, Malte -- To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20101001205733.25...@gmx.net
Bug#598804: Daily Boot Image Yields Dead Keyboard
Package: installation-reports Boot method: USB-stick Image version: http://people.debian.org/~joeyh/d-i/images/daily/hd-media/boot.img.gz Date: Image downloaded at 04:51 UTC 02 Oct 2010 Machine: Acer Aspire one 532h-2789 Processor: Atom N450 Memory: 1 GB Partitions: N/A (floppy image) Output of lspci -knn (or lspci -nn): N/A Base System Installation Checklist: [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it Initial boot: [E] Detect network card:[ ] Configure network: [ ] Detect CD: [ ] Load installer modules: [ ] Detect hard drives: [ ] Partition hard drives: [ ] Install base system:[ ] Clock/timezone setup: [ ] User/password setup:[ ] Install tasks: [ ] Install boot loader:[ ] Overall install:[E] Comments/Problems: After displaying initial option screen, keystrokes are ignored -- May the LORD God bless you exceedingly abundantly! Dave_Craig__ "'So the universe is not quite as you thought it was. You'd better rearrange your beliefs, then. Because you certainly can't rearrange the universe.'" __--from_Nightfall_by_Asimov/Silverberg_ -- To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20101002060831.ga2...@saltmine.radix.net
Re: d-i manual: Spanish conversion to gettext
Quoting Omar Campagne (ocampa...@gmail.com): > My questions are: > > 1. May I enrichen the info in doc/translation_po.txt? Might be useful if > more langteams follow this path. I'll basically use the email, plus > caveats I found out during conversion. Please do. > > 2. Should I tell this list after I "svn del es && svn add po/es", or > does the automatic build system take care automatically of the change > and no more action is needed? Yes, please notify the list. It's not really clear yet about who's maintaining the maint-guide after Frans Pop death, but having information flowing in -boot is the best thing to do as of now. > > Moving to other issue, some builds fail for every lang lately, I guess > it has do to with changes in the docs and that you know it. > Just felt I should mention. For the above reason, it's better to post the build failure messages so that someone has a chance to look at them. signature.asc Description: Digital signature
Bug#598601: Now successfull install PDX-057T-5A
Quoting Tapio Lehtonen (tapio.lehto...@dnainternet.net): > Then SD-card showed up as /dev/sdb and USB stick as /dev/sda. Boot media was > USB stick, installed on > SD-card. I guessed boot fails because SD card becomes /dev/sda when USB-stick > is removed, so at the > boot after installation I changed GRUB2 config, changed > set root='(hd1,msdos1)' > to > set root='(hd0,msdos1)' > > Now panel pc works fine. Hmmm, do you think that something needs to be fixed in d-i or do you finally consider this as a fully successful install? signature.asc Description: Digital signature