Bug#464962: 2.6.24.4 doesn't quite fix it

2008-04-14 Thread Tim Phipps
The patch in 2.6.24.4 and the soon to be 2.6.25 fixes this problem but only if you build with CONFIG_X86_GENERIC set. The current Debian build for the 686 kernel does not set this and the long NOPs will still be there. This e-mail was sent from a group e-mail system of ARC International Plc.

Bug#467627: initramfs-tools: Boot parameter panic=0 not compatible with break= parameter.

2008-02-26 Thread Tim Phipps
Package: initramfs-tools Version: 0.85h Severity: normal You can't use break=??? if you use panic=0. This is because the maybe_break function calls the panic function to get a shell. It should be simple to fix by just setting panic=1 inside maybe_break() before calling panic(). --

Bug#389994: Found the bug, patch attached

2006-10-02 Thread Tim Phipps
The bug is in this section: if [ ${NFSROOT#:*} = $NFSROOT ]; then NFSROOT=${ROOTSERVER}:${NFSROOT} fi The :* is the wrong way around so if $NFSROOT=192.168.0.4:/ the :* pattern won't match (NFSROOT doesn't start with :) and so NFSROOT gets

Bug#389994: initramfs-tools: NFS timeout on first mount causes looping.

2006-09-28 Thread Tim Phipps
Package: initramfs-tools Version: 0.80 Severity: normal I'm still getting the timeouts on root mount refered to in bug 359926. With this version of initramfs-tools the retry fails without really retrying and it enters a loop. After 180s it times out and drops to a panic shell. IP is configured

Bug#387640: usplash timeout stays on vt8.

2006-09-15 Thread Tim Phipps
Package: usplash Version: 0.3e Severity: normal After a usplash timeout (e.g. fsck) I'm left looking at vt8 which doesn't have much on it and I need to alt-F1 to get to the real console messages. Does usplash need to switch to vt8? If so can it switch back on timeout. -- System Information:

Bug#387430: unionfs-modules-2.6.17-2-686 should have a build-dep on linux-support-2.6.17-2

2006-09-14 Thread Tim Phipps
Package: unionfs-modules-2.6.17-2-686 Version: 1.3+debian-4+2.6.17-2 Severity: normal Title say it all, I couldn't build without this package. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh

Bug#385969: usplash: /etc/lsb-base-logging.sh confuses bootlogd output.

2006-09-04 Thread Tim Phipps
Package: usplash Version: 0.3e Severity: normal In the function log_end_msg, line 104 has 'printf \r' which is used to keep the ok/fail message on the same line as the log_begin+msg text. This confuses the output of bootlogd since it uses its own primitive line buffer. Replacing the \r with \b

Bug#385624: initramfs-tools: Says retrying NFS mount the first time

2006-09-01 Thread Tim Phipps
Package: initramfs-tools Version: 0.77 Severity: minor The new mountroot() in scripts/nfs works nicely in that it does retry if the first mount fails but it always says Retrying even though it should say Trying the first time. Very minor bug though. -- Package-specific info: -- /proc/cmdline

Bug#385641: initramfs-tools: /dev/null is not there until udev runs, splash doesn't work.

2006-09-01 Thread Tim Phipps
Package: initramfs-tools Version: 0.77 Severity: important The new method of creating /dev/null is causing usplash to not work. At the top of the init script /dev/null is created if it doesn't exist and then a tmpfs is mounted on top of /dev. This hides the /dev/null and /dev/console so any

Bug#385281: initramfs-tools: Could remove the mkdir's and mknod's from init script.

2006-08-30 Thread Tim Phipps
Package: initramfs-tools Version: 0.76 Severity: minor The top part of init has this: mkdir /sys mkdir /proc mkdir /tmp mkdir -p /var/lock These can all be put in the initramfs image can't they? Also (not a bug), I can't figure out how /root gets created, it's not in the image and there's no

Bug#377643: The panic=0 paramter will work around this

2006-08-23 Thread Tim Phipps
You can consider this bug work-arounded if you use the panic=0 boot parameter. Getting a timeout would then reboot the machine thus giving a retry (although a bit slower). Cheers, Tim. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL

Bug#383335: /etc/init.d/usplash does not work with kbd package

2006-08-16 Thread Tim Phipps
Package: usplash Version: 0.3e Severity: normal I have the kbd package installed (it handles bigger fonts than console-utilities) and its initscript is called /etc/init.d/console-screen.kbd.sh. The usplash init.d script is not going to use this since it's looking for /etc/init.d/console-screen.sh

Bug#378682: initramfs-tools: Please add a check in mkinitramfs to stop script names causing panics.

2006-07-18 Thread Tim Phipps
Package: initramfs-tools Version: 0.69b Severity: normal I created a script called /etc/initramfs-tools/scripts/nfs-bottom/retry-nfs. There were plenty of hyphens in the path leading to script name so I didn't think the name would be a problem. Imagine my suprise when I rebooted and got some

Bug#378742: linux-image-2.6.16: cx88 driver drowns out dmesg

2006-07-18 Thread Tim Phipps
Package: linux-image-2.6.16 Version: hippo.3 Severity: normal drivers/media/video/cx88/*.c has this in places: #define dprintk(level,fmt, arg...) if (debug = level) ... I think that = should be a so that when debug is set to 0 no messages are printed by the kernel. At the moment I have

Bug#377643: initramfs-tools: Should retry if nfsmount fails.

2006-07-10 Thread Tim Phipps
Package: initramfs-tools Version: 0.67 Severity: important For some reason my diskless system seems to fail to boot every other time. I get time-out messages from nfsroot and then the /init script dumps me into a debug shell when it can't find /root/sbin/init. I don't know the cause of the mount

Bug#375624: initramfs-tools: Typo in panic() in scripts/functions. Fails to set prompt.

2006-06-27 Thread Tim Phipps
Package: initramfs-tools Version: 0.60 Severity: minor /usr/share/initramfs-tools/scripts/functions has a panic() function to spawn an emergency or debug shell. It does so with this line FS1='(initramfs) ' /bin/sh /dev/console /dev/console 21 FS1 should be PS1 if you want to set the