On Sat, Dec 27, 2003 at 10:21:16AM -0500, Joey Hess wrote: > powerpc: Very shakey > - Daily building is down; Thorsten Sauter needs a build machine > and bruckner is down, voltaire is not set up right. Needs a > debian admin or a kindly offer from someone with a powerpc > box. > - Autobuilding ok. > - Kernels are in a state of transition. > - CD images are broken due to daily build issue. > May soon switch them over to use the autobuilt images. > - No recent install reports, and dunno if it'll work.
Hey, you told me yesterday you will add me to the debian-installer alioth project, so i can commit the needed changes, but apparently you didn't. Just added me to base-config. So, i cannot access the CVS server : $ CVS_RSH=ssh cvs -d:ext:[EMAIL PROTECTED]:/cvsroot/d-i co debian-installer cvs server: warning: cannot write to history file /cvsroot/d-i/CVSROOT/history: Permission denied Or maybe i made some other mistake or something. Anyway, as a result i cannot commit the small fix i promised you yesterday, so someone else will have to do it. Here it is : Index: build/config/arch/linux-powerpc =================================================================== RCS file: /cvsroot/d-i/debian-installer/build/config/arch/linux-powerpc,v retrieving revision 1.8 diff -u -u -r1.8 linux-powerpc --- build/config/arch/linux-powerpc 18 Dec 2003 12:36:41 -0000 1.8 +++ build/config/arch/linux-powerpc 31 Dec 2003 08:18:42 -0000 @@ -2,7 +2,7 @@ KERNELVERSION=2.4.22-powerpc # Still using the old -udeb.udeb's for now. -KERNEL_FLAVOUR=udeb +KERNEL_FLAVOUR=di KERNELNAME=vmlinux KERNELIMAGEVERSION=$(KERNELVERSION) Mmm, maybe changing the comment to something more appropriate would be nice too. For the bultin initrd stuff, i prefer to wait for beta3. Anyway, i can now build builtin initrds with the kernel and the initrd provided by beta2, so it should be ok. Anyway, i cannot really test this stuff, since the 2.4.22-4 kernel doesn't provide support for my Radeon 9200, i will have to make another upload, but this will have to wait for next year, and post beta2, as i don't have the time anymore to build a full powerpc kernel before leaving, altough if someone would feel like doing an NMU for it, the patch is easy, just add the attached patch (altough a better one with support for Ya to Yc would be nicer). Happy new year to everyone. Friendly, Sven Luther
diff -ur -x.depend linux-2.4.23-pegasos/drivers/video/radeonfb.c linux-2.4.23-pegasos+rtc/drivers/video/radeonfb.c --- linux-2.4.23-pegasos/drivers/video/radeonfb.c 2003-11-29 18:55:31.000000000 +0100 +++ linux-2.4.23-pegasos+rtc/drivers/video/radeonfb.c 2003-12-20 09:19:00.000000000 +0100 @@ -202,6 +202,8 @@ RADEON_If, RADEON_Ig, RADEON_Y_, + RADEON_Ya, + RADEON_Yd, RADEON_Ld, RADEON_Le, RADEON_Lf, @@ -261,6 +263,8 @@ { "9000 If", RADEON_RV250 }, { "9000 Ig", RADEON_RV250 }, { "9200 Y", RADEON_RV280 }, + { "9200 Ya", RADEON_RV280 }, + { "9200 Yd", RADEON_RV280 }, { "M9 Ld", RADEON_M9 }, { "M9 Le", RADEON_M9 }, { "M9 Lf", RADEON_M9 }, @@ -326,6 +330,8 @@ { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RADEON_NH, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_NH}, { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RADEON_NI, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_NI}, { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RADEON_Y_, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_Y_}, + { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RADEON_Ya, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_Ya}, + { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RADEON_Yd, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_Yd}, { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RADEON_AD, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_AD}, { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RADEON_AP, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_AP}, { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RADEON_AR, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RADEON_AR}, diff -ur -x.depend linux-2.4.23-pegasos/include/linux/pci_ids.h linux-2.4.23-pegasos+rtc/include/linux/pci_ids.h --- linux-2.4.23-pegasos/include/linux/pci_ids.h 2003-11-29 18:56:03.000000000 +0100 +++ linux-2.4.23-pegasos+rtc/include/linux/pci_ids.h 2003-12-20 09:17:41.000000000 +0100 @@ -287,6 +287,10 @@ #define PCI_DEVICE_ID_ATI_RADEON_Ig 0x4967 /* Radeon RV280 (9200) */ #define PCI_DEVICE_ID_ATI_RADEON_Y_ 0x5960 +#define PCI_DEVICE_ID_ATI_RADEON_Ya 0x5961 +#define PCI_DEVICE_ID_ATI_RADEON_Yb 0x5962 +#define PCI_DEVICE_ID_ATI_RADEON_Yc 0x5963 +#define PCI_DEVICE_ID_ATI_RADEON_Yd 0x5964 /* Radeon R300 (9700) */ #define PCI_DEVICE_ID_ATI_RADEON_ND 0x4e44 #define PCI_DEVICE_ID_ATI_RADEON_NE 0x4e45