/sbin/mkinitrd seems to be a script... I changed 

if [ `uname -m` = "ia64" ]; then
  IMAGESIZE=3000
else
  IMAGESIZE=1500  

into

if [ `uname -m` = "ia64" -o "alpha" ]; then
  IMAGESIZE=3000
else
  IMAGESIZE=1500

Then it works...

Stefan

Reply via email to