Re: http://release.debian.org/lenny/arch_qualify.html

2008-07-13 Thread Joerg Friedrich
Josip Rodin schrieb am Sonntag, 13. Juli 2008 um 10:27:14 +0200:
 On Sun, Jul 13, 2008 at 10:22:44AM +0200, Josip Rodin wrote:
  On Tue, Jul 08, 2008 at 03:03:41PM +0200, Joerg Friedrich wrote:
   I just noticed, that sparc is 'at risk' not to be released with lenny
   according to http://release.debian.org/lenny/arch_qualify.html.
   
   Maybe someone with knowledge of the sparc-buildd could update the
   Section Archive coverage and Autobuilder support
   
   AFAICS spontini.d.o is building unstable. so there is a
   buildd redundency. :-)
  
  IIRC the problem is security - we have lebrun and spontini in operation,
  but the release team want a dedicated machine for security builds,
  I've been asked provide another machine recently along those lines.
 
 Oh, but I see now the point of your last comment - our re-qualification page
 still says that spontini can't build unstable. bzed, I thought some kernel
 of yours was running there for a while now?
 

yes, sorry, I'm not a native speaker.

Btw. one annoying thing about the two sparc buildd's is that spontini
(the much slower machine) often picks up very large packages like
openoffice.org. is it possible to have some kind of priority? 

-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.


signature.asc
Description: Digital signature


http://release.debian.org/lenny/arch_qualify.html

2008-07-08 Thread Joerg Friedrich
Hi!

I just noticed, that sparc is 'at risk' not to be released with lenny
according to http://release.debian.org/lenny/arch_qualify.html.

Maybe someone with knowledge of the sparc-buildd could update the
Section Archive coverage and Autobuilder support

AFAICS spontini.d.o is building unstable. so there is a
buildd redundency. :-)

-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.


signature.asc
Description: Digital signature


iptables: at least -j ULOG fails, maybe other targets affected

2007-03-30 Thread Joerg Friedrich
found 232401 1.3.6.0debian1-5
thanks

Hi, this bug still exists in the recent version.
I encountered it while playing with ULOG.

but it might affect other parts of iptables since the
KERNEL_64_USERLAND_32 is also used in
./iptables/include/libipq/libipq.h
./iptables/include/linux/netfilter_ipv4/ipt_CONNMARK.h
./iptables/include/linux/netfilter_ipv4/ipt_ULOG.h
./iptables/include/linux/netfilter_ipv4/ipt_conntrack.h
./iptables/include/linux/netfilter_ipv4/ipt_SAME.h
./iptables/include/linux/netfilter_ipv4/ipt_MARK.h
./iptables/include/linux/netfilter_ipv4/ipt_limit.h
./iptables/include/linux/netfilter_ipv4/ipt_mark.h
./iptables/include/linux/netfilter_ipv4/ipt_connmark.h
./iptables/include/linux/netfilter_ipv4/ipt_CLUSTERIP.h
./iptables/include/linux/netfilter_ipv6/ip6t_limit.h
./iptables/include/linux/netfilter_ipv6/ip6t_mark.h
./iptables/include/linux/netfilter_ipv6/ip6t_MARK.h
./iptables/Makefile
./iptables/extensions/libipt_MARK.c
./iptables/extensions/libipt_mark.c
./iptables/extensions/libip6t_mark.c
./iptables/extensions/libipt_conntrack.c
./iptables/extensions/libipt_ULOG.c
./iptables/extensions/libip6t_MARK.c
./iptables/libiptc/libiptc.c


latest buildlog (auric) 
http://buildd.debian.org/fetch.cgi?pkg=iptables;ver=1.3.6.0debian1-5;arch=sparc;stamp=1164289648

shows that the 'ugly makefile hack' from upstream to determin this, has
failed D_UNKNOWN_KERNEL_POINTER_SIZE

but anyway either sparc64 or sparc32 is broken :-(

-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



[Patch] kenvctrld causes very high cpu load

2007-02-15 Thread Joerg Friedrich
Hi!

I recently got a Sun Blade 1000.
I encountered the same problem described at
http://ubuntuforums.org/showthread.php?t=297474

The mentioned solution (removing the msleep) and switch to polling mode
is imho no good option.

Problem:
kthread kenvctrld calls wait_for_pin(), attaches itself to the
wait_queue and sets itself INTERRUPTIBLE (unneccesary because
msleep_interruptible does the same). Then it checks if the i2c-query is
already done. Usually this is not the case at first check.

Then kenvctrl calles msleep_interruptible(250). Usually 1 or 2 ms later
the i2c-bus signals by interrupt that the desired operation is done.
The interrupt-handler wakes up all tasks in the wq.
Know kenvctrld is reset to TASK_RUNNING and does about 248 ms sleeping
at kernel priority :-(


the patch attached will switch this to wait_event_interruptible_timeout.
It might be possible to change this line:

if ((val != -ERESTARTSYS)  (val  0))  {

to

if (val  0)  {

but I was not sure if I can rely on errror codes 0


Please check this patch since I do not know exactly how to proceed.


-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.
--- linux-2.6.20/drivers/sbus/char/bbc_i2c.c.orig   2007-02-15 
21:26:56.0 +0100
+++ linux-2.6.20/drivers/sbus/char/bbc_i2c.c2007-02-15 21:28:36.0 
+0100
@@ -187,19 +187,18 @@
bp-waiting = 1;
add_wait_queue(bp-wq, wait);
while (limit--  0) {
-   u8 val;
+   long val;
 
-   set_current_state(TASK_INTERRUPTIBLE);
-   *status = val = readb(bp-i2c_control_regs + 0);
-   if ((val  I2C_PCF_PIN) == 0) {
+   val = wait_event_interruptible_timeout(bp-wq,
+   (((*status = readb(bp-i2c_control_regs + 0))  
I2C_PCF_PIN) == 0),
+   msecs_to_jiffies(250));
+   if ((val != -ERESTARTSYS)  (val  0))  {
ret = 0;
break;
}
-   msleep_interruptible(250);
}
remove_wait_queue(bp-wq, wait);
bp-waiting = 0;
-   current-state = TASK_RUNNING;
 
return ret;
 }
@@ -340,7 +339,7 @@
 */
if (bp-waiting 
!(readb(bp-i2c_control_regs + 0x0)  I2C_PCF_PIN))
-   wake_up(bp-wq);
+   wake_up_interruptible(bp-wq);
 
return IRQ_HANDLED;
 }


Re: Installation problems on Ultra30

2006-04-02 Thread Joerg Friedrich
Joseph Simantov schrieb am Sonntag, 02. April 2006 um 14:59:37 -0700:
 I have been trying to install 3.1 on an Ultra30;
 installation is ok, but when the moment of truth comes
 (reboot) it obstinately refuses to start the XServer.
 The graphic card is a Sun Elite3D, and I tried most of
 the suggested driver settings without success.
 
 Does anybody know the correct config settings for this
 card, connected to a 17in Sun monitor?


The elite3d needs a microcode to work.

in short: get solaris-patch 105791-33.tar.Z from sunsolve.sun.com
extract afb.ucode from that archive
install debian packages afbinit
put the afb.ucode into /usr/lib


sing the online petition at http://www.petitiononline.com/afbucode/

-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Installation problems on Ultra30

2006-04-02 Thread Joerg Friedrich
Joerg Friedrich schrieb am Montag, 03. April 2006 um 07:50:43 +0200:
 
 sing the online petition at http://www.petitiononline.com/afbucode/
  ^ 
oops, should be sign :-)



-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: kdegraphics

2004-12-05 Thread Joerg Friedrich
Hi Martin,

Martín Marqués schrieb am Samstag, 04. Dezember 2004 um 11:03:06 -0300:
 Can someone tell me why I have kdegraphics holding back for about 3 months 
 (or 
 more, I just can't remember)?

see: http://lists.debian.org/debian-release/2004/11/msg00218.html

-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.



Re: How do I report bugs to Debian??

2004-11-27 Thread Joerg Friedrich
Walt L. Williams schrieb am Freitag, 26. November 2004 um 19:39:20 -0700:
 Good evening
 
 I found an obvious bug in the deselect program.
 I went to install QT3 and it aparently depends
 one zlib1g-dev and zlib1g. It indicates in the 
 screen that these are being selected for
 install. The only problem is I can't get out
 of this screen. Its a loop. I end up having 
 to do a Ctrl c to get out.

What about pressing '?' and then 'k':

on the left bottom corner you could read:
--
Quit, exit, overwrite (note capitals!):
 Return  Confirm, quit (check dependencies)
   Q Confirm, quit (override dep.s)
 X, Esc  eXit, abandoning any changes made
   R Revert to state before this list
   U set all to sUggested state
   D set all to Directly requested state
--


Pressing 'X' (not the capital), or 'Esc' should go back,
Pressing 'Q' will also work.

 
 I would like to complete a bug report.
 I actually found it once on the Debian site
 bit forgot where it was.

-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.



Re: XFree not starting any more

2004-11-26 Thread Joerg Friedrich
Hi Dieter,

Jurzitza, Dieter schrieb am Freitag, 26. November 2004 um 08:01:17 +0100:
 on my U60 2-processor XFree is failing when upgrading from 2.4.26 to 2.4.28 
 (see logfiles attached).
 Same XF86Config - file, no change in system but a different kernel. The 
 .config files differ hardly (see below)
 
 Apparently the PCI-scan does not work any more.
 Anybody having any idea on this?
 Many thanks for your inputs,
 take care

It would be helpful if you tell us what hardware is in your machine and
send some logging data. i.e. X.log



Btw: Useless Footer, when sending to a mailling list which is archived
in public
 
 ***
 Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte 
 Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail 
 irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und 
 loeschen Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte 
 Weitergabe dieser Mail ist nicht gestattet.
  
 This e-mail may contain confidential and/or privileged information. If you 
 are not the intended recipient (or have received this e-mail in error) please 
 notify the sender immediately and delete this e-mail. Any unauthorized 
 copying, disclosure or distribution of the contents in this e-mail is 
 strictly forbidden.
 ***
 

-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.



Re: showstoppers when moving from kernel 2.4 to 2.6

2004-11-26 Thread Joerg Friedrich
Hendrik Sattler schrieb am Donnerstag, 25. November 2004 um 23:48:29 +0100:
 This one?
Yes.

 +# Building the devicelist:
 +# Kernel 2.4 running'
 +if [ `dmesg | grep -c Elite 3D` -ne 0 ]; then
 +  afb_devs=`/bin/dmesg | /bin/egrep -i Elite 3D | /bin/sed 's/\:.*//'`
 +fi
 +
 +# Kernel 2.6:
 +if [ `/bin/dmesg | /bin/grep -c ffb: AFB` -gt 0 ]; then
 +  afb_devs=`/bin/cat -s /proc/fb  | /bin/egrep -i Elite 3D | /bin/sed 
 's/\ .*//' | /bin/sed 's/^/fb/'`
 +fi
 
 First thing is useless use of cat and why egrep instead of grep?

With egrep, your right.
I don't know why, but see this:
[EMAIL PROTECTED]:~# grep -i Elite 3D /proc/fb
[EMAIL PROTECTED]:~# egrep -i Elite 3D /proc/fb
[EMAIL PROTECTED]:~# cat /proc/fb | egrep -i Elite 3D
[EMAIL PROTECTED]:~# cat -s /proc/fb | egrep -i Elite 3D
0 Elite 3D
[EMAIL PROTECTED]:~# cat -s /proc/fb | grep -i Elite 3D
0 Elite 3D

I need to use cat -s otherwise it doesn't work

  You can also remove one sed (untested):
   afb_devs=fb`/bin/grep -i Elite 3D /proc/fb | /bin/sed 's/\ .*//'`

no I cannot because there might be more than one line in /proc/fb
ie: 
---
0 Elite 3D
1 Elite 3D
---

and both devices should be inizialized.

but yes I could do it with only one sed: 
/bin/sed 's/\([0-9]\)\ .*/fb\1/'

 Those are two programs less to execute...
 And maybe put case for 2.4.* and 2.6.* so not both have to be executed. This 
 way, you can get rid of both if statements.


-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.



Re: XFree not starting any more

2004-11-26 Thread Joerg Friedrich
Jurzitza, Dieter schrieb am Freitag, 26. November 2004 um 09:00:28 +0100:
 Dear listmembers,
 dear Jörg,
 cd /; find . -name X.log brought no information, so I took the boot-logging 
 out of /var/log/messages. Perhaps this helps to find out what is going on 
 here.

Depending on the way you start X there might be different logfiles.
someone already mentioned XFree*.log, if you use gdm look into
/var/log/gdm. kde I don't know.

 I have the same graphics card as you have, Jörg, but afbinit loads nicely, 
 when I saw your mail I thought at the very begin that someone might have 
 changed the boot message regarding the graphics card in 2.4.28, too, but this 
 is not the case.

do you see something like 

fb0: Loading Elite3D microcode...   Revision-number done.

when booting?


 
 Baiscally I have:
 
 - U60 SMP360
 - Adaptec 29160 SCSI-Controller,
 - Tigon 3c996 Ethernet card (not used here, but module is loaded)
 - Promise IDE Controller
 - Elite 3D graphics card,
 - 512 MB of memory
 
 Thanks for any inputs, how should I create X.log?


-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.



Re: showstoppers when moving from kernel 2.4 to 2.6

2004-11-26 Thread Joerg Friedrich
Hendrik Sattler schrieb am Freitag, 26. November 2004 um 16:14:43 +0100:
 Am Freitag, 26. November 2004 08:44 schrieb Joerg Friedrich:
  [EMAIL PROTECTED]:~# grep -i Elite 3D /proc/fb
  [EMAIL PROTECTED]:~# egrep -i Elite 3D /proc/fb
  [EMAIL PROTECTED]:~# cat /proc/fb | egrep -i Elite 3D
  [EMAIL PROTECTED]:~# cat -s /proc/fb | egrep -i Elite 3D
  0 Elite 3D
  [EMAIL PROTECTED]:~# cat -s /proc/fb | grep -i Elite 3D
  0 Elite 3D
 
  I need to use cat -s otherwise it doesn't work
 
 Off-topic here but strange. What does the whole file with cat /proc/fb look 
 like?
 BTW: /proc/fb exists on linux-2.4.x, too, so why not dump dmsg and only use 
 that file?

Because under 2.4 /proc/fb is populated _after_ afbinit is run


-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.



Re: Ultra2 Booting problem

2004-11-26 Thread Joerg Friedrich
Walt L. Williams schrieb am Freitag, 26. November 2004 um 09:38:27 -0700:
 On Friday November 26 2004 6:34 am, Carlos Emir M. Macedo wrote:
  Walt,
 
  I had the same problem a few days ago. There are erros at your
  silo.conf.
 
 Small problem; I am not getting a silo prompt. The prompt I get is: {0} ok.
 I believe the silo prompt will say boot. I did the boot 2/boot/vmlinuz 
 you 
 indicated below.  I also tried variations of it, ie:  boot 1/boot/vmlinuz. No 
 help! The lines below is what I got each time. (The first line is what I
 entered at the prompt.)
 
 {0} ok boot 2/boot/vmlinuz
 Boot device: /sbus/SUNW, [EMAIL PROTECTED],880/[EMAIL PROTECTED],0 File 
 and args: boot 2/boot/
 vmlinuz 
 The file just loaded does not appear to be executable.
 {0} ok 

it seems that silo is not or not correctly installed into the bootblock
of your boot-device.

your boot device seems to be /sbus/SUNW, [EMAIL PROTECTED],880/[EMAIL 
PROTECTED],0
verify by 
{0} ok printenv boot-device
and maybe 
{0} ok devalias first alias from the command above

you could try to boot the rescue system from cd and pass the right
root-device to the kernel.

ie:
{0} ok boot cdrom

and at silo prompt:

boot: rescue root=/dev/sd...

then your system should boot.

fix /etc/silo.conf and rerun silo


 Is there any other possibilities??
 

What disks are in the machine?
Whats your partition layout?
whats your silo.conf?



 FYI: I downloaded Solaris 10 tried to load only to have the install tell 
 me that my UltraSPARC I processors are supported by this release 
 by the release of Solaris.  Great more wasted CDs.
 
 
 
  First, you must know where are your vmlinuz files. Here the full
  path is:
 
  2/boot/vmlinuz
 
  At silo, do:
 
  boot 2/boot/vmlinuz
 
  It should work.
 
  My silo.conf looks like:
 
  partition=2
  root=/dev/sda2
  timeout=10
  read-only
  default=linux
  image=/vmlinuz
label=linux
root=/dev/sda2
  #  initrd=/initrd.img
  image=/vmlinuz-2.4
label=linuxOK
root=/dev/sda2
  image=/vmlinuz-2.6-smp
label=linux-2.6-smp
root=/dev/sda2
  #  initrd=/initrd.old
  image=/vmlinuz-2.6-1proc
label=linux-2.6-1proc
root=/dev/sda2
 
  The trick is to configure root= in each image.
  It works for me.
 
  Hope it helps.
  Best Regards,
  Emir
 
  =
  Carlos Emir Mantovani Macedo
  Suporte Técnico
  Tecnologia Bancária S.A.
  +55 11 3244-8321
  [EMAIL PROTECTED]
  http://www.tecban.com.br
  =
 
 

-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.



showstoppers when moving from kernel 2.4 to 2.6

2004-11-25 Thread Joerg Friedrich
Hi,

I have two issues after switching from kernel 2.4.x to 2.6.x

First: Keymap. this issue is known,
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=269405
For 2.6 a workaround is not to load any keymap.
2.4 I was not able to test due to because I ran into a problem with the
silo.conf (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=282965) but
I will test tomorrow.

Second: Problem with afbinit, which is needed to use AFB-based graphics
adaptor. /etc/init.d/afbinit tries to parse the output of dmesg to
determin which devices needs to be initialized.
2.4: has this output:
fb0: Elite 3D at 01fc type 39 DAC 0

2.6:
ffb: AFB at 01fc type 39 DAC 10

/etc/init.d/afbinit is looking for Elite 3D which is no longer
reported by 2.6. ok can be worked around, but 2.6 does no longer report
the devicename (fb0 in this example).

Does anyone know a possibility to get the devicename?
-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.



Re: showstoppers when moving from kernel 2.4 to 2.6

2004-11-25 Thread Joerg Friedrich
Joerg Friedrich schrieb am Donnerstag, 25. November 2004 um 21:37:21 +0100:
 Hi,
 
 I have two issues after switching from kernel 2.4.x to 2.6.x
 
 Second: Problem with afbinit, which is needed to use AFB-based graphics
 adaptor. /etc/init.d/afbinit tries to parse the output of dmesg to
 determin which devices needs to be initialized.
 2.4: has this output:
 fb0: Elite 3D at 01fc type 39 DAC 0
 
 2.6:
 ffb: AFB at 01fc type 39 DAC 10
 
 /etc/init.d/afbinit is looking for Elite 3D which is no longer
 reported by 2.6. ok can be worked around, but 2.6 does no longer report
 the devicename (fb0 in this example).
 
 Does anyone know a possibility to get the devicename?

After searching a while I found a solution. gentoo had a patch, so it
should work now. the patch should appear on
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=250619 soon :-)

One last question: anone using devfs or udev?
How are the framebuffer-devices named?


-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.



Re: showstoppers when moving from kernel 2.4 to 2.6

2004-11-25 Thread Joerg Friedrich
Admar Schoonen schrieb am Donnerstag, 25. November 2004 um 23:04:45 +0100:
 On Thu, Nov 25, 2004 at 10:27:41PM +0100, Joerg Friedrich wrote:
  One last question: anone using devfs or udev?
  How are the framebuffer-devices named?
 
 $ ls -l /dev/fb*
 crw-rw  1 root video 29, 0 Nov 25 08:42 /dev/fb0
 crw-rw  1 root video 29, 1 Nov 25 08:42 /dev/fb1
 $
 
 At least, that's on my system with two mach64 based cards.

do you use devfs or udev? I thought this is something wich subdirs in
/dev?


-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.



Keyboard-Problems with kernel 2.6 and my Ultra60 solved

2004-05-24 Thread Joerg Friedrich
Hi,

some weeks ago I reported a problem with my keyboard (and mouse) not working 
with
kernel = 2.6.5 on my Ultra60.

After searching a lot and even more kernel building I know now that is
absolutly neccessary to set

CONFIG_SERIAL_SUNSU=y

The sun keyboard connection a serial one and the the su driver is needed
to use it.

Additionally I had to tell console-data to keep the kernels keymap.
every other setting leads to an unusable keyboard.


one problem remaining: if I start X I cannot switch back to the console
by pressing ctrl-alt-f[1-6], does anyone know this issue?

-- 
Jörg Friedrich

There are only 10 types of people:
Those who understand binary and those who don't.



SOLVED: sunffb needs afbinit Re: Bug#245246: xserver-xfree86: xserver starts but suddenly dies before and windowmanager or similar starts

2004-05-05 Thread Joerg Friedrich
Hi Branden,

Branden Robinson schrieb am Donnerstag, 29. April 2004 um 11:57:42 -0500:
 On Thu, Apr 29, 2004 at 03:24:31PM +0200, Joerg Friedrich wrote:
  Branden Robinson schrieb am Mittwoch, 28. April 2004 um 02:49:07 -0500:
   
   Does the X server stay up if you give it no clients to run?
   
   One way to test this is simply to run X as root.
  
  definitly X, I tried to run 'X' as root, the result is the same.
 
 Okay, it looks like the sunffb driver is definitely busted in testing
 and unstable.
 
 Debian SPARC porters:

I got it :-)

At least the Elite3D graphics adaptor (I don't know the Creator)
requires to be initialized by afbinit which need a microcode file from
sun.
after 'afbinit /dev/fd0' X starts without any problems!

Sorry I am new to Linux/SPARC.

Maybe you can raise a debconf warning when the sunffb driver is
selected.

-- 
Jörg Friedrich



d-i: sparc64 problems: a summary

2004-04-28 Thread Joerg Friedrich
Hi,
Today I tried with the help of joshk to use the cdimages on sparc64 (aka
UltraSparc)

For testing I pulled the cdrom-core-modules-2.4.24-sparc64 into
pkglists/netboot/sparc64.cfg, because miniiso is build with this flavour
and I want to test loading the cdmodules. The initrd then is now a bit
to large. (default ramdisk-size is 4MB). but ramdisk_size=8192 at silo
prompt help.

so I was able to boot with this:
'linux root=/dev/rd/0 devfs=mount,dall rw ramdisk_size=8192 \
debian-installer/framebuffer=false'

(Disabled framebuffer because UPA/SBUS-Framebuffer are not supported)

Problem: modprobe -v any-module fails because busybox does not support
biarch (see #231606)

I rebuild d-i miniiso with modutils-basic into the initrd.

modprobe -v fails with 'no such module' but insmod works
I don't know why.
modprobe -c looks right and
modprobe -l lists all modules

I hope this helps.
-- 
Jörg Friedrich



2.6.5, sparc64, no keyboard

2004-04-27 Thread Joerg Friedrich
Hi,
yesterday I managed to build 2.6.5 for my Ultra60.
Problem was the default of NR_CPU=64 when enabling SMP. see my previous
post.

But now I have no keyboard. It is simply not recognized. I think I did
something wrong in kernel-config, but I don't find the problem.

config attached.
-- 
Jörg Friedrich
#
# Automatically generated make config: don't edit
#
CONFIG_64BIT=y
CONFIG_MMU=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
# CONFIG_CLEAN_COMPILE is not set
# CONFIG_STANDALONE is not set
CONFIG_BROKEN=y
CONFIG_BROKEN_ON_SMP=y

#
# General setup
#
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_SYSCTL=y
CONFIG_LOG_BUF_SHIFT=15
CONFIG_HOTPLUG=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_EMBEDDED is not set
CONFIG_KALLSYMS=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
CONFIG_OBSOLETE_MODPARM=y
# CONFIG_MODVERSIONS is not set
CONFIG_KMOD=y
CONFIG_STOP_MACHINE=y

#
# General setup
#
# CONFIG_BBC_I2C is not set
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
CONFIG_SMP=y
CONFIG_PREEMPT=y
CONFIG_NR_CPUS=8
# CONFIG_CPU_FREQ is not set
CONFIG_SPARC64=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_SBUS=y
CONFIG_SBUSCHAR=y
CONFIG_SUN_AUXIO=y
CONFIG_SUN_IO=y
CONFIG_PCI=y
CONFIG_PCI_DOMAINS=y
CONFIG_RTC=y
# CONFIG_PCI_LEGACY_PROC is not set
CONFIG_PCI_NAMES=y
CONFIG_SUN_OPENPROMFS=y
CONFIG_SPARC32_COMPAT=y
CONFIG_COMPAT=y
CONFIG_UID16=y
CONFIG_BINFMT_ELF32=y
# CONFIG_BINFMT_AOUT32 is not set
CONFIG_BINFMT_ELF=y
# CONFIG_BINFMT_MISC is not set
# CONFIG_SUNOS_EMUL is not set
# CONFIG_SOLARIS_EMUL is not set

#
# Parallel port support
#
# CONFIG_PARPORT is not set
CONFIG_ENVCTRL=y
# CONFIG_DISPLAY7SEG is not set
# CONFIG_CMDLINE_BOOL is not set

#
# Generic Driver Options
#
CONFIG_FW_LOADER=m

#
# Graphics support
#
CONFIG_FB=y
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_BW2 is not set
# CONFIG_FB_CG3 is not set
# CONFIG_FB_CG6 is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON_OLD is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_PM3 is not set
CONFIG_FB_SBUS=y
CONFIG_FB_FFB=y
# CONFIG_FB_TCX is not set
# CONFIG_FB_CG14 is not set
# CONFIG_FB_P9100 is not set
# CONFIG_FB_LEO is not set
# CONFIG_FB_PCI is not set
# CONFIG_FB_VIRTUAL is not set

#
# Console display driver support
#
# CONFIG_MDA_CONSOLE is not set
CONFIG_PROM_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_PCI_CONSOLE=y
# CONFIG_FONTS is not set
CONFIG_FONT_SUN8x16=y
# CONFIG_FONT_SUN12x22 is not set

#
# Logo configuration
#
# CONFIG_LOGO is not set

#
# Serial drivers
#
# CONFIG_SERIAL_8250 is not set

#
# Non-8250 serial port support
#
CONFIG_SERIAL_SUNCORE=y
# CONFIG_SERIAL_SUNZILOG is not set
# CONFIG_SERIAL_SUNSU is not set
CONFIG_SERIAL_SUNSAB=y
CONFIG_SERIAL_SUNSAB_CONSOLE=y
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y

#
# Misc Linux/SPARC drivers
#
CONFIG_SUN_OPENPROMIO=y
CONFIG_SUN_MOSTEK_RTC=m
CONFIG_OBP_FLASH=m
CONFIG_SUN_BPP=m
# CONFIG_SUN_VIDEOPIX is not set
# CONFIG_SUN_AURORA is not set

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Block devices
#
# CONFIG_BLK_DEV_FD is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_CARMEL is not set
# CONFIG_BLK_DEV_RAM is not set

#
# ATA/ATAPI/MFM/RLL support
#
# CONFIG_IDE is not set

#
# SCSI device support
#
CONFIG_SCSI=y
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
CONFIG_CHR_DEV_ST=m
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=m
# CONFIG_BLK_DEV_SR_VENDOR is not set
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set

#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_REPORT_LUNS=y
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y

#
# SCSI Transport Attributes
#
# CONFIG_SCSI_SPI_ATTRS is not set
# CONFIG_SCSI_FC_ATTRS is not set

#
# SCSI low-level drivers
#
# CONFIG_BLK_DEV_3W__RAID is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_MEGARAID is not set
# CONFIG_SCSI_SATA is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_CPQFCTS is not set
# 

Re: serial-console

2004-04-26 Thread Joerg Friedrich
Joerg Friedrich schrieb am Montag, 19. April 2004 um 09:11:15 +0200:
 Hi!
 
 Now I successfully installed Woody on my Ultra60, upgraded to unstable
 and was able to compile a custom Kernel (2.4.25). But I failed to
 compile 2.6.5 (Problem in arch/sparc64/smp.c) see attached file.
 

argl, just a stupid default NR_CPU = 64 in arch/sparc64/Kconfig
now it works.
-- 
Jörg Friedrich



Re: XFree86 X server: does loading the dri module still hose sunffb users?

2004-04-21 Thread Joerg Friedrich
Hi,
sorry, deleted the original mail.

Steve King schrieb am Mittwoch, 21. April 2004 um 15:47:42 +0100:
  Hi folks,
 
  I have the following in xserver-xfree86.config:
 
   # server modules to load
   # XXX: damnit, explicitly loading the dri module is broken for sunffb
   users :-P db_get xserver-xfree86/config/device/driver
   if [ $ARCH = sparc ]  [ $RET = sunffb ]; then
 MODULE_LIST=GLcore, bitmap, dbe, ddc, extmod, freetype, glx, int10,
 record, speedo, type1, v4l, vbe, xtt
   else
 MODULE_LIST=GLcore, bitmap, dbe, ddc, dri, extmod, freetype, glx,
 int10, record, speedo, type1, v4l, vbe, xtt
   fi
 
  This dates back to XFree86 4.1.0:
 
  xfree86 (4.1.0-17) unstable; urgency=low
 
  [...]
   * debian/xserver-xfree86.config:
  [...]
 - do not explicitly load the dri module on the sparc architecture
 if the
   sunffb driver is being used, because of an apparent upstream bug
   in the module loader (thanks, Ben Collins)
 
  -- Branden Robinson [EMAIL PROTECTED]  Fri, 24 May 2002 01:26:13
  -0500
 
  Can someone who uses the sunffb driver tell me if this is still
  necessary with XFree86 4.3.0?  I'd like to take that kludge out.



first, this restriction seems not to work, I get dri as an option.
second, I try to get the xserver run with my Ultra60/Elite3D (sunffb)
but X starts and then suddenly stops before any (x|g|k)dm or a simple
windowmanager starts.
I attach my config and the log, I hope you can see something there.

-- 
Jörg Friedrich
# XF86Config-4 (XFree86 X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type man XF86Config-4 at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4  /var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86

Section Files
FontPathunix/:7100# local font server
# if the local font server has problems, we can fall back on these
FontPath/usr/lib/X11/fonts/misc
FontPath/usr/lib/X11/fonts/cyrillic
FontPath/usr/lib/X11/fonts/100dpi/:unscaled
FontPath/usr/lib/X11/fonts/75dpi/:unscaled
FontPath/usr/lib/X11/fonts/Type1
FontPath/usr/lib/X11/fonts/CID
FontPath/usr/lib/X11/fonts/Speedo
FontPath/usr/lib/X11/fonts/100dpi
FontPath/usr/lib/X11/fonts/75dpi
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  keyboard
Option  CoreKeyboard
Option  XkbRules  sun
Option  XkbModel  type5
Option  XkbLayout us
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/sunmouse
Option  Protocol  BusMouse
EndSection

Section InputDevice
Identifier  Generic Mouse
Driver  mouse
Option  SendCoreEventstrue
Option  Device/dev/input/mice
Option  Protocol  ImPS/2
EndSection

Section Device
Identifier  Elite3D
Driver  sunffb
EndSection

Section Monitor
Identifier  Generic Monitor
HorizSync   30-60
VertRefresh 50-75
Option  DPMS
EndSection

Section Screen
Identifier  Default Screen
Device  Elite3D
Monitor Generic Monitor
DefaultDepth24
SubSection Display
Depth   1
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   4
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   8
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   15
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   16
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   24
Modes   1024x768 800x600 640x480
EndSubSection
EndSection

Section ServerLayout
Identifier  

Re: Xserver

2004-04-20 Thread Joerg Friedrich
Guido Guenther schrieb am Dienstag, 20. April 2004 um 10:20:05 +0200:
 On Mon, Apr 19, 2004 at 09:11:15AM +0200, Joerg Friedrich wrote:
  (EE) SUNFFB(0): Given depth (16) is not supported by this driver
 Does depth 8 work?

oops, I attached the wrong X.log, only 24bit seems to be supported at
colour depth, new log attached


-- 
Jörg Friedrich

This is a pre-release version of XFree86, and is not supported in any
way.  Bugs may be reported to XFree86@XFree86.Org and patches submitted
to [EMAIL PROTECTED]  Before reporting bugs in pre-release versions,
please check the latest version in the XFree86 CVS repository
(http://www.XFree86.Org/cvs).

XFree86 Version 4.3.0.1 (Debian 4.3.0-7 2004031854 [EMAIL PROTECTED])
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.25 sparc [ELF] 
Build Date: 18 March 2004
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.25 ([EMAIL PROTECTED]) (gcc version 3.3.3 (Debian 
20040401)) #1 SMP Tue Apr 20 09:07:43 CEST 2004 
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Tue Apr 20 11:07:51 2004
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout Default Layout
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Generic Monitor
(**) |   |--Device Elite3D
(**) |--Input Device Generic Keyboard
(**) Option XkbRules sun
(**) XKB: rules: sun
(**) Option XkbModel type5
(**) XKB: model: type5
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device Configured Mouse
(**) |--Input Device Generic Mouse
(WW) The directory /usr/lib/X11/fonts/cyrillic does not exist.
Entry deleted from font path.
(WW) The directory /usr/lib/X11/fonts/CID does not exist.
Entry deleted from font path.
(**) FontPath set to 
unix/:7100,/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/100dpi/:unscaled,/usr/lib/X11/fonts/75dpi/:unscaled,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/Speedo,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi
(==) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such device)
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.3.0.1, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.3.0.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 108e,8000 card , rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 108e,1000 card , rev 01 class 06,80,00 hdr 80
(II) PCI: 00:01:1: chip 108e,1001 card , rev 01 class 02,00,00 hdr 80
(II) PCI: 00:03:0: chip 1000,000f card , rev 14 class 01,00,00 hdr 80
(II) PCI: 00:03:1: chip 1000,000f card , rev 14 class 01,00,00 hdr 80
(II) PCI: 01:00:0: chip 108e,8000 card , rev 00 class 06,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  2   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  2   0x - 0x7fff (0x8000) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  2   0x - 0x7fff (0x8000) MX[B]
(II) Host-to-PCI bridge:
(II) Bus 1: bridge is at (1:0:0), (1,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1  1   0x - 0x (0x1) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1  1   0x - 0x7fff (0x8000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  1   0x - 0x7fff (0x8000) MX[B]
(--) SBUS:(0xf006e530) Sun Elite3D at /SUNW,[EMAIL PROTECTED],0
(II) Addressable bus resource ranges are
[0] -1  1   0x - 0x7fff (0x8000) MX[B]
[1] -1  2   0x - 0x7fff (0x8000) MX[B]
[2] -1  1   0x - 0x (0x1) IX[B]
[3] -1  2   0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges:
[0] -1

Problems with Kernel 2.6.5 and xserver, sorry wrong subject [was: serial-console]

2004-04-19 Thread Joerg Friedrich

-- 
Jörg Friedrich



New to Debian-Sparc

2004-04-17 Thread Joerg Friedrich
Hi, 

this are my first steps running linux on a sparc-machine.
A few days ago I bought a used Ultra60 at Ebay. 
After installing Solaris on the first disk, I want to try linux now.

First, the machine has 2 450-Mhz-Ultrasparc cpus, 2 GB ram and 2 9.1-GB
harddisks.

Yesterday I tried to install Debian 3.0r2.
(I wanted to test d-i, but the cdimages don't have any kernel module in
the initrd, so no installation possible, see bug #243457)
I partitioned the second disk and installed woody straight forward. 
The problem was 'Making the system bootable', I just selected yes,
rebooted and nothing happened. 
I booted the rescue system, read silo documentation, had no idea what
was wrong. It was an error at layer 8 (sitting in front of the screen)
:-). I tried to 'boot disk2' instead of 'boot disk1' for the second
disk.
But one question remains, I didn't find any hint in which place silo
will be installed, and can I change it? 
After this adventure I think it will be installed in the boot block of
the disk '/boot'-Partition is on. Is this right?


Now I was able to complete my install and upgrade to unstable :-)
then I wanted to compile a custom kernel. I wanted to use menuconfig.
after installing lib64ncurses* menuconfig compiled but it always hangs
after parsing the .config. I don't know why. and xconfig has a problem
with tkparse. I  tried kernel-source 2.4.25 and 2.6.5, both transcripts
attached. Can anyone help?

btw. can I use these kernels on a ultrasparc?



and I discovered another problem, I  cannot run 'top'. I always get
top: failed /proc/stat read



-- 
thanks
Jörg Friedrich



Re: New to Debian-Sparc

2004-04-17 Thread Joerg Friedrich
Joerg Friedrich schrieb am Samstag, 17. April 2004 um 10:50:30 +0200:
 with tkparse. I  tried kernel-source 2.4.25 and 2.6.5, both transcripts
 attached. Can anyone help?

Btw: You don't have to use your crystall-balls, these files are attached
to this mail :-)

-- 
Jörg Friedrich
#  make-kpkg --config=menuconfig --revision=2.4.25.sun.1 kernel_image
test ! -f stamp-debian  test ! -f debian/official  \--config=config 
--revision=2.4.25.sun.1 kernel_image kernel_heade
  rm -rf ./debian  mkdir ./debiannfig=config --revision=2.4.25.sun.1 
kernel_image kernel_head
test ! -f stamp-debian -a \
   ! \( -f debian/official -a -f debian/control \)  \
   sed -e 's/=V/2.4.25/g'-e 's/=D/2.4.25.sun.1/g'   \
   -e 's/=A/sparc/g'   -e 's/=SA/-sparc64/g' \
-e 's/=L/silo, /g' -e 's/=I//g'\
-e 's/=CV/2.4/g' \
-e 's/=M/Unknown Kernel Package Maintainer [EMAIL 
PROTECTED]/g'  \
 /usr/share/kernel-package/Control debian/control
test ! -f stamp-debian  test ! -f debian/official   \
   sed -e 's/=V/2.4.25/g' -e 's/=D/2.4.25.sun.1/g'  \
-e 's/=A/sparc/g' -e 's/=M/Unknown Kernel Package Maintainer [EMAIL 
PROTECTED]/g' \
/usr/share/kernel-package/changelog  debian/changelog
test ! -f debian/rules\
   install -p -m 755 /usr/share/kernel-package/rules debian/rules
echo done   stamp-debian
/usr/bin/make -f debian/rules INCLUDE_KERNEL_MAKEFILE=yes conf_vars
make[1]: Entering directory `/usr/src/kernel-source-2.4.25'
debian/rules:1554: warning: overriding commands for target `clean'
Makefile:456: warning: ignoring old commands for target `clean'
Please ignore the warning about overriding and ignoring targets above.
These are harmless. They are only invoked in a part of the process
that tries to snarf variable values for the conf.vars file.
make[1]: Leaving directory `/usr/src/kernel-source-2.4.25'
/usr/bin/make\
 ARCH=sparc64 menuconfig
make[1]: Entering directory `/usr/src/kernel-source-2.4.25'
rm -f include/asm
( cd include ; ln -sf asm-sparc64 asm)
/usr/bin/make -C scripts/lxdialog all
make[2]: Entering directory `/usr/src/kernel-source-2.4.25/scripts/lxdialog'
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE  
-DCURSES_LOC=ncurses.h -c -o checklist.o checklist.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE  
-DCURSES_LOC=ncurses.h -c -o menubox.o menubox.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE  
-DCURSES_LOC=ncurses.h -c -o textbox.o textbox.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE  
-DCURSES_LOC=ncurses.h -c -o yesno.o yesno.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE  
-DCURSES_LOC=ncurses.h -c -o inputbox.o inputbox.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE  
-DCURSES_LOC=ncurses.h -c -o util.o util.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE  
-DCURSES_LOC=ncurses.h -c -o lxdialog.o lxdialog.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE  
-DCURSES_LOC=ncurses.h -c -o msgbox.o msgbox.c
gcc -o lxdialog checklist.o menubox.o textbox.o yesno.o inputbox.o util.o 
lxdialog.o msgbox.o -lncurses
make[2]: Leaving directory `/usr/src/kernel-source-2.4.25/scripts/lxdialog'
/bin/sh scripts/Menuconfig arch/sparc64/config.in
Using defaults found in .config
Preparing scripts: functions, 
parsing...done.


no further output, waiting and waiting...


#  make-kpkg --config=xconfig --revision=2.4.25.sun.1 kernel_image
est ! -f stamp-debian  test ! -f debian/official  \
  rm -rf ./debian  mkdir ./debian
test ! -f stamp-debian -a \
   ! \( -f debian/official -a -f debian/control \)  \
   sed -e 's/=V/2.4.25/g'-e 's/=D/2.4.25.sun.1/g'   \
   -e 's/=A/sparc/g'   -e 's/=SA/-sparc64/g' \
-e 's/=L/silo, /g' -e 's/=I//g'\
-e 's/=CV/2.4/g' \
-e 's/=M/Unknown Kernel Package Maintainer [EMAIL 
PROTECTED]/g'  \
 /usr/share/kernel-package/Control debian/control
test ! -f stamp-debian  test ! -f debian/official   \
   sed -e 's/=V/2.4.25/g' -e 's/=D/2.4.25.sun.1/g'  \
-e 's/=A/sparc/g' -e 's/=M/Unknown Kernel Package Maintainer [EMAIL 
PROTECTED]/g' \
/usr/share/kernel-package/changelog  debian/changelog
test ! -f debian/rules\
   install -p -m 755 /usr/share/kernel-package/rules debian/rules
echo done   stamp-debian
/usr/bin/make -f debian/rules INCLUDE_KERNEL_MAKEFILE=yes conf_vars
make[1]: Entering directory `/usr/src/kernel-source-2.4.25'
debian/rules:1554: warning: overriding commands for target `clean'
Makefile:456: warning: ignoring old commands

Re: New to Debian-Sparc

2004-04-17 Thread Joerg Friedrich
Ben Collins schrieb am Samstag, 17. April 2004 um 10:10:47 -0400:
 On Sat, Apr 17, 2004 at 10:54:44AM +0200, Joerg Friedrich wrote:
  Joerg Friedrich schrieb am Samstag, 17. April 2004 um 10:50:30 +0200:
   with tkparse. I  tried kernel-source 2.4.25 and 2.6.5, both transcripts
   attached. Can anyone help?
  
  Btw: You don't have to use your crystall-balls, these files are attached
  to this mail :-)
 
 You need to load the binfmt_elf module for the 64-bit binaries to work.
 Otherwise, do touch /etc/disable_64_gcc.
 

Thanks, this was the problem, but the installation kernel from woody 
2.4.18 seems to have a problem, this module was not installable.
I just installed 2.4.24-ultra-smp (or similar) from debian-mirror, then
everything went smooth.

-- 
Jörg Friedrich



firewire/usb

2004-04-17 Thread Joerg Friedrich
Hi,
does anyone have experience with firewire pci cards and/or usb (1.1 or
2)  pci cards under linux on Sparc machines?

If this is posssible, can you recommend a card?


-- 
Jörg Friedrich