(1) Jay very kindly fixed the TGA fonts so that they match
the kernel's. All the images in test-images now contain
this.
(2) The current sources are milo-1.3.66.tgz.
(3) There's a bug fix to the UDB image so that it doesn't
clear bits 3:4 of 0x4d0 (which turns edge/level sensitive
interrupts on/off). You'll need the following kernel
patch to arch/alpha/bios32.c in sio_fixup() to take advantage
of it:
static inline void sio_fixup(void)
/*
* Now, make all PCI interrupts level sensitive. Notice:
* these registers must be accessed byte-wise. outw() doesn't
* work. Also, don't destroy any current settings.
*/
level_bits |= (inb(0x4d0) | (inb(0x4d1) << 8)) ;
outb((level_bits >> 0) & 0xff, 0x4d0) ;
outb((level_bits >> 8) & 0xff, 0x4d1) ;
enable_ide(0x26e) ;
The symptom is that dip does not work via the serial port
of the UDB. With the new UDB milo and the above kernel patch
it will.
Dave