Bug#846924: [arping] New upstream release available / debian/watch fails

2016-12-04 Thread Otto Meta
Package: arping
Version: 2.14-1
Severity: normal

--- Please enter the report below this line. ---

New upstream releases for arping have been available for a while.
The newest version available is 2.17.

I guess nobody noticed because using the package's debian/watch file
failed with an unknown error, according to the PTS. I don't know
where to report that, though.

2.17 fixes several bugs, including the inaccurate roundtrip times.
It compiles with no errors (but two warnings) on my Stretch system
and seems to be working fine.

--- System information. ---
Architecture: Kernel:   Linux 4.8.7-ck8

Debian Release: stretch/sid
  500 testing mirror.1und1.de
--- Package information. ---
Depends   (Version) | Installed
===-+-=
libc6 (>= 2.15) | libnet1(>= 1.1.2.1) | libpcap0.8   
(>= 0.9.8) |

Package's Recommends field is empty.

Package's Suggests field is empty.



Bug#776098: grub-pc and grub-rescue-pc cause immediate reboot

2015-01-24 Thread Otto Meta
Otto Meta wrote:
 After finishing the installation, the system was rebooted, but instead
 of getting some output from grub or the grub menu, the system rebooted
 again, immediately after the BIOS was done.

As it turns out, setting the BIOS option CPU Internal Cache to Disabled
will let grub-pc 2.02~beta2-19 run and the system can boot normally,
albeit very slowly. With no cache, uncompressing the Linux kernel image
takes almost two minutes. Re-enabling the cache causes grub to reboot
again.

grub-rescue-pc from Wheezy (1.99-27+deb7u2) and LILO work as expected
even with the CPU-internal cache enabled.

The BIOS also has a CPU External Cache option, but disabling that
doesn't improve anything. The mainboard doesn't actually have any
CPU external cache. Not sure what that refers to.

VIA C3 Ezra caches:
L1-Cache: 64 + 64 KB (Data + Instructions)
L2-Cache: 64 KB

Otto


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#776098: grub-pc and grub-rescue-pc cause immediate reboot

2015-01-23 Thread Otto Meta
Package: grub-pc
Version: 2.02~beta2-20
Severity: important

Dear Maintainer,

I performed a fresh installation from the Jessie Beta 2 netinst CD and chose
to install grub-pc into the MBR of the only disk (MSDOS partitions) in this
system. After finishing the installation, the system was rebooted, but instead
of getting some output from grub or the grub menu, the system rebooted again,
immediately after the BIOS was done. This repeated over and over. I cannot say
whether there was any output from grub at all, because if there was, it was
gone before I could see it.

It was possible to use the installer's rescue mode to chroot into the fresh
installation and run grub-install again, which finished with no errors, but
grub would still not run and reboot instead.

Next I tried grub-rescue-pc from Jessie (2.02~beta2-19) via CD, but
the system still rebooted as soon as the CD drive spun up to load grub.

grub-rescue-pc from Wheezy (1.99-27+deb7u2) via CD works and boots Linux as
expected. Installing LILO works and boots the system as expected. I purged
LILO, installed grub-pc again and booted via Wheezy's grub-rescue-pc
before generating this report, though.

As I don't see it in the data below, I'd like to mention that this system
runs on a VIA C3 Ezra CPU (fam: 06, model: 07, stepping: 08), which doesn't
implement cmov. Might be a red herring, though.

Thanks,
Otto


-- Package-specific info:

*** BEGIN /proc/mounts
/dev/sda1 / ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ ${next_entry} ] ; then
   set default=${next_entry}
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default=0
fi

if [ x${feature_menuentry_id} = xy ]; then
  menuentry_id_option=--id
else
  menuentry_id_option=
fi

export menuentry_id_option

if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
  fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
insmod all_video
  else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root 
--hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 
--hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  
e5c0ccdd-95ce-4ab0-9ea3-1d3ddc91a615
else
  search --no-floppy --fs-uuid --set=root e5c0ccdd-95ce-4ab0-9ea3-1d3ddc91a615
fi
font=/usr/share/grub/unicode.pf2
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_GB
  insmod gettext
fi
terminal_output gfxterm
if [ ${recordfail} = 1 ] ; then
  set timeout=-1
else
  if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=5
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
set timeout=5
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload=${1}
}
set linux_gfx_mode=
export linux_gfx_mode
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu 
--class os $menuentry_id_option 
'gnulinux-simple-e5c0ccdd-95ce-4ab0-9ea3-1d3ddc91a615' {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root 
--hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 
--hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  
e5c0ccdd-95ce-4ab0-9ea3-1d3ddc91a615
else
  search --no-floppy --fs-uuid --set=root 
e5c0ccdd-95ce-4ab0-9ea3-1d3ddc91a615
fi
echo'Loading Linux 3.16.0-4-586 ...'
linux   /boot/vmlinuz-3.16.0-4-586 
root=UUID=e5c0ccdd-95ce-4ab0-9ea3-1d3ddc91a615 ro  quiet
echo'Loading initial ramdisk ...'
initrd  /boot/initrd.img-3.16.0-4-586
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option