Bug#710212: Regarding: Bug#710212: fails to install
(Replying for the bug tracker.) On 09/06/13 11:21 AM, Geert Stappers wrote: Op 2013-05-30 om 02:54 schreef Alex Vanderpol: On 30/05/13 12:55 AM, Geert Stappers wrote: For what it is worth: this from syslinux (3:6.00~pre4+dfsg-10) * Correcting typo in extlinux debhelper install file (Closes: #710306). Please try the new version and report back. Installed it just now (as it finally showed up in the repos), seems to be working fine now, thanks! Thanks for the private reply. Good to know that extlinux again works. Is it okay for you that bugreport #710212 also gets your feedback? If 'yes': just reply to this E-mail, it has Reply-To set to the BTS. Cheers Geert Stappers -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#710212: Regarding: Bug#710212: fails to install
Op 2013-05-29 om 23:30 schreef Alex Vanderpol: > Attempting to narrow down the cause of this bug led me to an > interesting discovery. > > There's a rather large difference between the > /usr/sbin/extlinux-update files in 3:6.00~pre4+dfsg-7 and > 3:6.00~pre4+dfsg-8 that appears (in part, at least) to be related to > this issue. > > This difference also exists in 3:6.00~pre4+dfsg-9. For what it is worth: this from syslinux (3:6.00~pre4+dfsg-10) * Correcting typo in extlinux debhelper install file (Closes: #710306). Please try the new version and report back. > > Here's the diff output from 3:6.00~pre4+dfsg-7 to 3:6.00~pre4+dfsg-8 > and 3:6.00~pre4+dfsg-9: > > 12,34d11 > < _EXTLINUX_DIRECTORY="/boot/extlinux" > < Thanks. A request: Please get the habit to use the '-u' flag of `diff`. Example: `diff -u previous.file newer.file` This way we get the same output as `svn diff` and `git diff` give. Cheers Geert Stappers -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#710212: fails to install
Attempting to narrow down the cause of this bug led me to an interesting discovery. There's a rather large difference between the /usr/sbin/extlinux-update files in 3:6.00~pre4+dfsg-7 and 3:6.00~pre4+dfsg-8 that appears (in part, at least) to be related to this issue. This difference also exists in 3:6.00~pre4+dfsg-9. Here's the diff output from 3:6.00~pre4+dfsg-7 to 3:6.00~pre4+dfsg-8 and 3:6.00~pre4+dfsg-9: 12,34d11 < _EXTLINUX_DIRECTORY="/boot/extlinux" < < Update () < { < # Upate target file using source content < _TARGET="${1}" < _SOURCE="${2}" < < _TMPFILE="${_TARGET}.tmp" < rm -f "${_TMPFILE}" < < echo "${_SOURCE}" > "${_TMPFILE}" < < if [ -e "${_TARGET}" ] && cmp -s "${_TARGET}" "${_TMPFILE}" < then < rm -f "${_TMPFILE}" < else < # FIXME: should use fsync here < echo "P: Updating ${_TARGET}..." < mv -f "${_TMPFILE}" "${_TARGET}" < fi < } < 60,145c37 < # Checking extlinux directory < echo -n "P: Checking for EXTLINUX directory..." < < # Creating extlinux directory < if [ ! -e "${_EXTLINUX_DIRECTORY}" ] < then < echo " not found." < < echo -n "P: Creating EXTLINUX directory..." < mkdir -p "${_EXTLINUX_DIRECTORY}" < echo " done: ${_EXTLINUX_DIRECTORY}" < else < echo " found." < fi < < # Setting defaults < EXTLINUX_ALTERNATIVES="${EXTLINUX_ALTERNATIVES:-default recovery}" < EXTLINUX_DEFAULT="${EXTLINUX_DEFAULT:-l0}" < EXTLINUX_ENTRIES="${EXTLINUX_ENTRIES:-all}" < EXTLINUX_MEMDISK="${EXTLINUX_MEMDISK:-true}" < EXTLINUX_MEMDISK_DIRECTORY="${EXTLINXU_MEMDISK_DIRECTORY:-/boot}" < < if [ -z "${EXTLINUX_MENU_LABEL}" ] < then < if [ -x "$(which lsb_release 2>/dev/null)" ] < then < EXTLINUX_MENU_LABEL="$(lsb_release -i -s) GNU/Linux, kernel" < else < EXTLINUX_MENU_LABEL="Debian GNU/Linux, kernel" < fi < fi < < EXTLINUX_OS_PROBER="${EXTLINUX_OS_PROBER:-true}" < EXTLINUX_PARAMETERS="${EXTLINUX_PARAMETERS:-ro quiet}" < < if [ -z "${EXTLINUX_ROOT}" ] < then < # Find root partition < while read _LINE < do < < read _FS_SPEC _FS_FILE _FS_VFSTYPE _FS_MNTOPS _FS_FREQ _FS_PASSNO << EOF < ${_LINE} < EOF < < if [ "${_FS_SPEC}" != "#" ] && [ "${_FS_FILE}" = "/" ] < then < EXTLINUX_ROOT="root=${_FS_SPEC}" < break < fi < done < /etc/fstab < fi < < if [ -z "${EXTLINUX_THEME}" ] < then < # Using default menu if available < if [ -e /usr/share/EXTLINUX/themes/default ] < then < EXTLINUX_THEME="default" < else < EXTLINUX_THEME="none" < fi < fi < < EXTLINUX_TIMEOUT="${EXTLINUX_TIMEOUT:-50}" < < # Writing new default file < cat > "/etc/default/extlinux" << EOF < ## /etc/default/extlinux - configuration file for extlinux-update(8) < < EXTLINUX_UPDATE="${EXTLINUX_UPDATE}" < < EXTLINUX_ALTERNATIVES="${EXTLINUX_ALTERNATIVES}" < EXTLINUX_DEFAULT="${EXTLINUX_DEFAULT}" < EXTLINUX_ENTRIES="${EXTLINUX_ENTRIES}" < EXTLINUX_MEMDISK="${EXTLINUX_MEMDISK}" < EXTLINUX_MEMDISK_DIRECTORY="${EXTLINUX_MEMDISK_DIRECTORY}" < EXTLINUX_MENU_LABEL="${EXTLINUX_MENU_LABEL}" < EXTLINUX_OS_PROBER="${EXTLINUX_OS_PROBER}" < EXTLINUX_PARAMETERS="$(echo -n ${EXTLINUX_PARAMETERS} | sed -e 's|\"|\\\"|g')" < EXTLINUX_ROOT="${EXTLINUX_ROOT}" < EXTLINUX_THEME="${EXTLINUX_THEME}" < EXTLINUX_TIMEOUT="${EXTLINUX_TIMEOUT}" < EOF < < # Source /etc/extlinux.d scripts --- > # Running /etc/extlinux.d scripts I hope this helps you fix this problem. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#710212: fails to install
Package: extlinux Version: 3:6.00~pre4+dfsg-9 Followup-For: Bug #710212 Dear Maintainer, Latest version (3:6.00~pre4+dfsg-9) still fails to install. Terminal output is as follows: P: Checking for EXTLINUX directory... not found. P: Creating EXTLINUX directory...mkdir: cannot create directory ‘’: No such file or directory dpkg: error processing extlinux (--configure): subprocess installed post-installation script returned error exit status 1 Errors were encountered while processing: extlinux -- System Information: Debian Release: jessie/sid APT prefers experimental APT policy: (650, 'experimental'), (650, 'unstable'), (600, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.8-2-amd64 (SMP w/2 CPU cores) Locale: LANG=en_CA.utf8, LC_CTYPE=en_CA.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages extlinux depends on: ii debconf [debconf-2.0] 1.5.50 ii libc6 2.17-3 Versions of packages extlinux recommends: ii os-prober1.61 ii syslinux-common 3:6.00~pre4+dfsg-9 extlinux suggests no packages. -- debconf information: extlinux/install: false -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#710212: fails to install
Package: extlinux Version: 3:6.00~pre4+dfsg-8 Severity: serious -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 That happens during installation of extlinux: Setting up extlinux (3:6.00~pre4+dfsg-8) ... P: Checking for EXTLINUX directory... not found. P: Creating EXTLINUX directory...mkdir: cannot : No such file or directory dpkg: error processing extlinux (--configure): subprocess installed post-installation script returned error exit status 1 Errors were encountered while processing: extlinuxcreate directory Regards, Thomas Koch - -- System Information: Debian Release: jessie/sid APT prefers experimental APT policy: (500, 'experimental'), (500, 'unstable'), (500, 'testing') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.8-2-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages extlinux depends on: ii debconf [debconf-2.0] 1.5.50 ii libc6 2.17-3 Versions of packages extlinux recommends: ii os-prober1.61 ii syslinux-common 3:6.00~pre4+dfsg-8 extlinux suggests no packages. - -- debconf information: extlinux/install: false -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) iQIcBAEBCAAGBQJRpZMGAAoJEAf8SJEEK6ZanC8P/0jLuDDlcWVYbEAhzlKQDoRy AphDrAQGJ+3xcU64emSO+AGVbeG18WMx1kImlx9VZLaWDM1skwv0nsbTgAYXiDup osQklveVH7KhMude/kqqvtkvsM8Kzx2bH0zd4MTn7p6WNgOyRP0ANvAU9gWYHWhb wMs6qeM2EnaNwVV4qv/KDxexjbKJDhcNGKOF+dKemFSQec6eIMKGUwkgKJ1Z+JR6 2BLElZtvoNfZnYUI5wtFKc+JFD48v9p7brgezDvRGVltyoR9jzPK9ISzD1OKkGFl KEXSNpNmLe4zJHXOjaXKAA9nuhAiCFCfYELH8CKcjB+Kmr0JCXmvSOVeR+rkpCvT 9p1Nj/tvMGksQzKiYLQxc+TuLKA9uzU0pJMiK0coZKLq57Pxdtg+9NJhtDqtw8Fo nsvjE4tY33g6emtbwLLmCT6zdpaTGeixfEIKjwhiLvbDyrkCNaPu2/RWPUCfkbGQ i0EaygbKFkUzn0dwJFtS2K7wBJgf5m5Z5zmVuiM/iynNjUqD5pg8RI/YNUMDIEcU 2m1SVVSfQ7qNTWjB6j2Dm7Q5xwlyqD0HsIuvZs/ndYU8GwpSksPu5B+/s8E5/IM6 12g94kG/XWfq3OltGmDXi1z+AO0C3Y8NPQ6yN6+Nsx8VUrMBIR59vQfMDiq5b528 WulKDTRAiLlgilVM760k =4MUM -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org