Debian Boot CVS: aph

2000-12-05 Thread Debian Boot CVS Master

CVSROOT:/cvs/debian-boot
Module name:boot-floppies
Changes by: aph 00/12/05 00:32:49

Modified files:
debian : changelog 

Log message:
fix bad some bad links and redirects -- someone needs to fix the
LinuxMCA ftp reference however


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




Debian Boot CVS: aph

2000-12-05 Thread Debian Boot CVS Master

CVSROOT:/cvs/debian-boot
Module name:boot-floppies
Changes by: aph 00/12/05 00:10:49

Modified files:
documentation  : release-notes.sgml 

Log message:
i386 doesn't have a port page, so conditionalize it, fixing a broken link


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




Debian Boot CVS: aph

2000-12-05 Thread Debian Boot CVS Master

CVSROOT:/cvs/debian-boot
Module name:boot-floppies
Changes by: aph 00/12/05 00:32:58

Modified files:
documentation  : urls.ent 

Log message:
fix bad some bad links and redirects -- someone needs to fix the
LinuxMCA ftp reference however


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




Debian Boot CVS: aph

2000-12-05 Thread Debian Boot CVS Master

CVSROOT:/cvs/debian-boot
Module name:boot-floppies
Changes by: aph 00/12/05 00:17:45

Modified files:
debian : changelog 

Log message:
my recent changes


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




Debian Boot CVS: aph

2000-12-05 Thread Debian Boot CVS Master

CVSROOT:/cvs/debian-boot
Module name:boot-floppies
Changes by: aph 00/12/05 00:17:01

Modified files:
documentation/en: dbootstrap.sgml 

Log message:
update , 
for potato

 -- slight rewording, new para on what base is

 -- this should not be conditional to i386
since a lot of arches have it, rework for potato


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




DAC960 needed

2000-12-05 Thread Lauri Tischler

Adam Di Carlo wrote:
> 
> Ok, we've started new 2.2.18 boot-floppies builds with the 2.2.18
> kernel (and new pcmcia-cs as well).  This is for Potato 2.2r2.

Would it be possible to have DAC960 support built-in to kernel-image
vmlinux-2.2.18prexx, it is now there as module.

compact has DAC960 built-in but it misses other important stuff like
ipx, ncp etc...   In addition it has that horrible fbcon.

Cheers..
--
Lauri Tischler, Network Admin
Tel:+358-9-47846331*   Mouse movement detected  *
Fax:+358-9-47846500* Reboot Windows to activate changes *
Mobile: +358-40-5569010
EMail:  [EMAIL PROTECTED]


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




Re: DAC960 needed

2000-12-05 Thread Adam Di Carlo

Lauri Tischler <[EMAIL PROTECTED]> writes:

> Adam Di Carlo wrote:
> > 
> > Ok, we've started new 2.2.18 boot-floppies builds with the 2.2.18
> > kernel (and new pcmcia-cs as well).  This is for Potato 2.2r2.
> 
> Would it be possible to have DAC960 support built-in to kernel-image
> vmlinux-2.2.18prexx, it is now there as module.

File a bug against kernel-image-2.2.18pre21.  It's not for me to
decide, it's for the kernel maintainer.

> compact has DAC960 built-in but it misses other important stuff like
> ipx, ncp etc...   In addition it has that horrible fbcon.

Wait, fbcon is horrible, but ipx and ncp is not?

-- 
.Adam Di [EMAIL PROTECTED]http://www.onShore.com/>


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




Arm bf problems - termwrap and null strings

2000-12-05 Thread Wookey

Hello people,

I've got some Arm boot-floppies (from CVS about 10 days ago ~ 2.2.19) which
nearly work. I've fixed a couple of problems and I'll post diffs here when I
get a set that work.

Current problems are:
1) inittab.install in root/bin is the one that gets put in /etc for the
second-stage install. This runs dpkg-reconfigure with /sbin/termwrap. This
doesn't work on arm. the problem seems to be that termwrap needs a file
called /etc/environment, and that isn't present in root/bin or base.tgz. I've
worked around it by simply removing this from the inittab, and things seem
to still work, but I'm not suer what termwrap does, and thus how important it
is, or where it comes from and thus what I should do to boot-floppies to make
it create a satisfactory root/bin and base. So, what is termwrap - do I need
it, where does it comes from, why it its environment file missing...

2) dbootstrap falls over trying to set the hostname. If you kill it (so it
restarts) then it continues but /etc/hostname ends up being "(null)" 9which
caues more problems later), so I suspect a similar problem to the one below
but haven't gone into the detail yet - that's next to investigate, straight
after this mail. I just wonder if this is a prob others found which is now
fixed in CVS?

Fixed problems are: in utilities/dbootstrap/bootconfig.c. dbootsrap bombs out
with a segfault when you select 'make drive bootable'. This is because
'Arch2' is null for arm when it gets tested to see if it is 'acorn' or
'netwinder' in order to decide which message explaining why this option is
pointless to print :-). (not sure why it segfaults rather than justs prints
neither message). This is fixed in utilities/dbootstrap/main.c in
(get_arm_model which needs 
if (!strcmp(buf, "acorn-", 6)) {
changing to 
if (!strncasecmp(buf, "acorn-", 6)) {

Also I note this prob always occurs if you use bootconfig_test as the
get_arm_model fn in main is not available. This must also
be true for get_alpha_model which was already in bootconfig.c for the
_TESTING_ case, presumably someone else's optimistic attempt to get it to
work :-)

Wookey
-- 
Aleph One Ltd, Bottisham, CAMBRIDGE, CB5 9BA, UK  Tel (00 44) 1223 811679
work: http://www.aleph1.co.uk/ play: http://www.chaos.org.uk/~wookey/


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




Re: DAC960 needed

2000-12-05 Thread Christoph Lameter

The boot-floppies package at http://openrock.net/tb/local/disks-i386 has all
sorts of RAID controller stuff. The archive also contains a 2.2.18 SMP
kernel for Debian.

On Tue, Dec 05, 2000 at 10:11:41AM -0500, Adam Di Carlo wrote:
> Lauri Tischler <[EMAIL PROTECTED]> writes:
> 
> > Adam Di Carlo wrote:
> > > 
> > > Ok, we've started new 2.2.18 boot-floppies builds with the 2.2.18
> > > kernel (and new pcmcia-cs as well).  This is for Potato 2.2r2.
> > 
> > Would it be possible to have DAC960 support built-in to kernel-image
> > vmlinux-2.2.18prexx, it is now there as module.
> 
> File a bug against kernel-image-2.2.18pre21.  It's not for me to
> decide, it's for the kernel maintainer.
> 
> > compact has DAC960 built-in but it misses other important stuff like
> > ipx, ncp etc...   In addition it has that horrible fbcon.
> 
> Wait, fbcon is horrible, but ipx and ncp is not?
> 
> -- 
> .Adam Di [EMAIL PROTECTED]http://www.onShore.com/>
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 


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




Debian Boot CVS: tale

2000-12-05 Thread Debian Boot CVS Master

CVSROOT:/cvs/debian-boot
Module name:boot-floppies
Changes by: tale00/12/05 13:18:56

Modified files:
utilities/dbootstrap/po: fi.po 

Log message:
30 messages untranslated


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




Re: DAC960 needed

2000-12-05 Thread Herbert Xu

Lauri Tischler <[EMAIL PROTECTED]> wrote:
> Would it be possible to have DAC960 support built-in to kernel-image
> vmlinux-2.2.18prexx, it is now there as module.

Not until we start using initrd, there simply isn't any space for it
at them oment.
-- 
Debian GNU/Linux 2.2 is out! ( http://www.debian.org/ )
Email:  Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt


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




Re: [VA-Debian] Comments from a first-time Debian install.....

2000-12-05 Thread Joey Hess

Adam Di Carlo wrote:
> Ted recommended that one of the tasks be made to represent the
> standard packages.  I think this is a very good idea.  Let it be
> checked by default. 

I think there are two problems:

1. How do we get this package; must it be rebuilt every time a package
   is added/removed from standard? It would need to keep track of
   differences accross architectures too.
2. Making it be selected by default in tasksel is not surrently
   supported. It occurs to me though that tasksel could look at package
   status and mark all tasks that are installed or are marked for install.
   Then base-config could just 
   'echo task-standard install | dpkg --set-selections' before running
   tasksel.

-- 
see shy jo


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




Re: DAC960 needed

2000-12-05 Thread Herbert Xu

On Tue, Dec 05, 2000 at 04:24:50PM -0800, Christoph Lameter wrote:
> Cut out the audio drivers and usb and it will work. A real kernel with all
> features couild be installed later. I have just updated my stuff to
> 2.2.18pre24. Should be on openrock.net tomorrow.

We don't have any audio drivers or USB compiled in.
-- 
Debian GNU/Linux 2.2 is out! ( http://www.debian.org/ )
Email:  Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt


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




Re: DAC960 needed

2000-12-05 Thread Christoph Lameter

Hmm. Why does it fit on my boot floppies ? I installed Debian on a Compaq RAID and a Dell Raid
system directly from my MicroCD.

On Wed, 6 Dec 2000, Herbert Xu wrote:

> On Tue, Dec 05, 2000 at 04:24:50PM -0800, Christoph Lameter wrote:
> > Cut out the audio drivers and usb and it will work. A real kernel with all
> > features couild be installed later. I have just updated my stuff to
> > 2.2.18pre24. Should be on openrock.net tomorrow.
> 
> We don't have any audio drivers or USB compiled in.


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




Re: DAC960 needed

2000-12-05 Thread Herbert Xu

On Tue, Dec 05, 2000 at 06:09:18PM -0800, Christoph Lameter wrote:
> Hmm. Why does it fit on my boot floppies  check things out>? I installed Debian on a Compaq RAID and a Dell Raid
> system directly from my MicroCD.

It's mostly due to all the SCSI drivers that we've compiled in.  2.4
will remove the 1M limit, but we've still got the occasional probe
hangs to contend with.  Which is why we should get initrd working ASAP.
-- 
Debian GNU/Linux 2.2 is out! ( http://www.debian.org/ )
Email:  Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt


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




Re: [VA-Debian] Comments from a first-time Debian install.....

2000-12-05 Thread Daniel Jacobowitz

On Sun, Dec 03, 2000 at 01:49:26AM -0500, Adam Di Carlo wrote:
> Well, for instance, even with booting with the 'compact' set, which
> has a lot of ethernet cards included, on my system at home, I need the
> 3c509 driver installed.  So, if I want to install the rest of the
> system over the network, I need to load the module here.
> 
> I guess I should try to clarify in the UI that this step is for
> loading modules which are needed for the installation process.

Well, that's not really true, is it?  Don't we write out /target/etc/modules
here?  I don't think that we touch it any other time.


Dan

/\  /\
|   Daniel Jacobowitz|__|SCS Class of 2002   |
|   Debian GNU/Linux Developer__Carnegie Mellon University   |
| [EMAIL PROTECTED] |  |   [EMAIL PROTECTED]  |
\/  \/


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




Re: DAC960 needed

2000-12-05 Thread Christoph Lameter

Hmm. I seem to have rmoved HAMRADIO IRDA and ISDN to make it fit. Here is
the kernel config:


CONFIG_EXPERIMENTAL=y

CONFIG_M386=y
CONFIG_1GB=y
CONFIG_MTRR=y

CONFIG_MODULES=y
CONFIG_MODVERSIONS=y
CONFIG_KMOD=y

CONFIG_NET=y
CONFIG_PCI=y
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_QUIRKS=y
CONFIG_PCI_OLD_PROC=y
CONFIG_MCA=y
CONFIG_SYSVIPC=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_SYSCTL=y
CONFIG_BINFMT_AOUT=m
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_MISC=m
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
CONFIG_APM=y
CONFIG_APM_DISABLE_BY_DEFAULT=y

CONFIG_PNP=y
CONFIG_PNP_PARPORT=m

CONFIG_BLK_DEV_FD=y
CONFIG_BLK_DEV_IDE=y
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_BLK_DEV_IDECD=y
CONFIG_BLK_DEV_IDETAPE=m
CONFIG_BLK_DEV_IDEFLOPPY=m
CONFIG_BLK_DEV_IDESCSI=m
CONFIG_BLK_DEV_CMD640=y
CONFIG_BLK_DEV_RZ1000=y
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_BLK_DEV_IDEDMA=y
CONFIG_BLK_DEV_ALI15X3=y
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_NBD=m
CONFIG_BLK_DEV_MD=y
CONFIG_MD_LINEAR=m
CONFIG_MD_STRIPED=m
CONFIG_MD_MIRRORING=m
CONFIG_MD_RAID5=m
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_INITRD=y
CONFIG_BLK_DEV_XD=m
CONFIG_BLK_DEV_DAC960=m
CONFIG_PARIDE_PARPORT=m
CONFIG_PARIDE=m
CONFIG_PARIDE_PD=m
CONFIG_PARIDE_PCD=m
CONFIG_PARIDE_PF=m
CONFIG_PARIDE_PT=m
CONFIG_PARIDE_PG=m
CONFIG_PARIDE_ATEN=m
CONFIG_PARIDE_BPCK=m
CONFIG_PARIDE_COMM=m
CONFIG_PARIDE_DSTR=m
CONFIG_PARIDE_FIT2=m
CONFIG_PARIDE_FIT3=m
CONFIG_PARIDE_EPAT=m
CONFIG_PARIDE_EPIA=m
CONFIG_PARIDE_FRIQ=m
CONFIG_PARIDE_FRPW=m
CONFIG_PARIDE_KBIC=m
CONFIG_PARIDE_KTTI=m
CONFIG_PARIDE_ON20=m
CONFIG_PARIDE_ON26=m
CONFIG_BLK_CPQ_DA=y
CONFIG_BLK_CPQ_CISS_DA=y

CONFIG_PACKET=m
CONFIG_NETLINK=y
CONFIG_NETLINK_DEV=m
CONFIG_FIREWALL=y
CONFIG_FILTER=y
CONFIG_UNIX=m
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_FIREWALL=y
CONFIG_IP_MASQUERADE=y
CONFIG_IP_MASQUERADE_ICMP=y
CONFIG_IP_MASQUERADE_MOD=y
CONFIG_IP_MASQUERADE_IPAUTOFW=m
CONFIG_IP_MASQUERADE_IPPORTFW=m
CONFIG_IP_MASQUERADE_MFW=m
CONFIG_NET_IPIP=m
CONFIG_NET_IPGRE=m
CONFIG_IP_ALIAS=y
CONFIG_SYN_COOKIES=y
CONFIG_INET_RARP=m
CONFIG_IPV6=m
CONFIG_IPX=m
CONFIG_SPX=m
CONFIG_ATALK=m
CONFIG_X25=m
CONFIG_LAPB=m
CONFIG_ECONET=m
CONFIG_WAN_ROUTER=m



CONFIG_SCSI=y
CONFIG_BLK_DEV_SD=y
CONFIG_CHR_DEV_ST=m
CONFIG_BLK_DEV_SR=y
CONFIG_CHR_DEV_SG=m
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y

CONFIG_BLK_DEV_3W__RAID=y
CONFIG_SCSI_7000FASST=y
CONFIG_SCSI_ACARD=y
CONFIG_SCSI_AHA152X=y
CONFIG_SCSI_AHA1542=y
CONFIG_SCSI_AHA1740=y
CONFIG_SCSI_AIC7XXX=y
CONFIG_AIC7XXX_CMDS_PER_DEVICE=8
CONFIG_AIC7XXX_PROC_STATS=y
CONFIG_AIC7XXX_RESET_DELAY=15
CONFIG_SCSI_IPS=y
CONFIG_SCSI_ADVANSYS=y
CONFIG_SCSI_IN2000=y
CONFIG_SCSI_AM53C974=y
CONFIG_SCSI_MEGARAID=y
CONFIG_SCSI_BUSLOGIC=y
CONFIG_SCSI_CPQFCTS=m
CONFIG_SCSI_DTC3280=y
CONFIG_SCSI_EATA=y
CONFIG_SCSI_EATA_MAX_TAGS=16
CONFIG_SCSI_EATA_PIO=y
CONFIG_SCSI_FUTURE_DOMAIN=y
CONFIG_SCSI_FD_MCS=y
CONFIG_SCSI_GDTH=y
CONFIG_SCSI_GENERIC_NCR5380=y
CONFIG_SCSI_G_NCR5380_PORT=y
CONFIG_SCSI_INITIO=y
CONFIG_SCSI_INIA100=y
CONFIG_SCSI_PPA=m
CONFIG_SCSI_IMM=m
CONFIG_SCSI_NCR53C406A=y
CONFIG_SCSI_SYM53C416=y
CONFIG_SCSI_SIM710=y
CONFIG_SCSI_NCR53C8XX=y
CONFIG_SCSI_SYM53C8XX=y
CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=8
CONFIG_SCSI_NCR53C8XX_MAX_TAGS=4
CONFIG_SCSI_NCR53C8XX_SYNC=5
CONFIG_SCSI_NCR53C8XX_PQS_PDS=y
CONFIG_SCSI_IBMMCA=y
CONFIG_SCSI_MCA_53C9X=y
CONFIG_SCSI_PAS16=m
CONFIG_SCSI_PSI240I=m
CONFIG_SCSI_QLOGIC_FAS=y
CONFIG_SCSI_QLOGIC_ISP=y
CONFIG_SCSI_QLOGIC_FC=y
CONFIG_SCSI_SEAGATE=y
CONFIG_SCSI_DC390T=m
CONFIG_SCSI_T128=y
CONFIG_SCSI_U14_34F=y
CONFIG_SCSI_U14_34F_MAX_TAGS=8
CONFIG_SCSI_ULTRASTOR=y
CONFIG_SCSI_DEBUG=m

CONFIG_I2O=m
CONFIG_I2O_PCI=m
CONFIG_I2O_BLOCK=m
CONFIG_I2O_SCSI=m

CONFIG_NETDEVICES=y

CONFIG_ARCNET=m
CONFIG_ARCNET_ETH=y
CONFIG_ARCNET_1051=y
CONFIG_ARCNET_COM90xx=m
CONFIG_ARCNET_COM90xxIO=m
CONFIG_ARCNET_RIM_I=m
CONFIG_ARCNET_COM20020=m
CONFIG_DUMMY=m
CONFIG_BONDING=m
CONFIG_EQUALIZER=m
CONFIG_ETHERTAP=m
CONFIG_NET_SB1000=m

CONFIG_NET_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
CONFIG_EL1=m
CONFIG_EL2=m
CONFIG_ELPLUS=m
CONFIG_EL16=m
CONFIG_ELMC=m
CONFIG_ELMC_II=m
CONFIG_EL3=m
CONFIG_3C515=m
CONFIG_VORTEX=m
CONFIG_LANCE=m
CONFIG_NET_VENDOR_SMC=y
CONFIG_WD80x3=m
CONFIG_ULTRAMCA=m
CONFIG_ULTRA=m
CONFIG_ULTRA32=m
CONFIG_SMC9194=m
CONFIG_NET_VENDOR_RACAL=y
CONFIG_NI5010=m
CONFIG_NI52=m
CONFIG_NI65=m
CONFIG_RTL8139=m
CONFIG_RTL8139TOO=y
CONFIG_NET_ISA=y
CONFIG_AT1700=m
CONFIG_E2100=m
CONFIG_DEPCA=m
CONFIG_EWRK3=m
CONFIG_EEXPRESS=m
CONFIG_EEXPRESS_PRO=m
CONFIG_FMV18X=m
CONFIG_HPLAN_PLUS=m
CONFIG_HPLAN=m
CONFIG_HP100=m
CONFIG_ETH16I=m
CONFIG_NE2000=m
CONFIG_NE2_MCA=m
CONFIG_SKMC=m
CONFIG_NET_EISA=y
CONFIG_PCNET32=m
CONFIG_AC3200=m
CONFIG_APRICOT=m
CONFIG_CS89x0=m
CONFIG_DM9102=m
CONFIG_DE4X5=m
CONFIG_DEC_ELCP=m
CONFIG_DEC_ELCP_OLD=m
CONFIG_DGRS=m
CONFIG_EEXPRESS_PRO100=m
CONFIG_LNE390=m
CONFIG_NE3210=m
CONFIG_NE2K_PCI=m
CONFIG_TLAN=m
CONFIG_VIA_RHINE=m
CONFIG_SIS900=m
CONFIG_ES3210=m
CONFIG_EPIC100=m
CONFIG_NET_POCKET=y
CONFIG_DE600=m
CONFIG_DE620=m

CONFIG_ACENIC=m
CONFIG_HAMACHI=m
CONF

Re: DAC960 needed

2000-12-05 Thread Herbert Xu

On Tue, Dec 05, 2000 at 09:12:13PM -0800, Christoph Lameter wrote:
> Hmm. I seem to have rmoved HAMRADIO IRDA and ISDN to make it fit. Here is

They're only modules anyway.  I had to remove one of the SCSI drivers
in order to make 2.2.18pre21 fit, so there might actually be enough
space to put DAC390 back in for the next release.
-- 
Debian GNU/Linux 2.2 is out! ( http://www.debian.org/ )
Email:  Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt


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




Re: DAC960 needed

2000-12-05 Thread Christoph Lameter

I also need full MegaRAID and COMPAQ raid support! I'd rather use the
standard kernel if possible. If you need help tell me.

On Wed, 6 Dec 2000, Herbert Xu wrote:

> On Tue, Dec 05, 2000 at 09:12:13PM -0800, Christoph Lameter wrote:
> > Hmm. I seem to have rmoved HAMRADIO IRDA and ISDN to make it fit. Here is
> 
> They're only modules anyway.  I had to remove one of the SCSI drivers
> in order to make 2.2.18pre21 fit, so there might actually be enough
> space to put DAC390 back in for the next release.
> -- 
> Debian GNU/Linux 2.2 is out! ( http://www.debian.org/ )
> Email:  Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]>
> Home Page: http://gondor.apana.org.au/~herbert/
> PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
> 


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




Re: DAC960 needed

2000-12-05 Thread Herbert Xu

On Tue, Dec 05, 2000 at 09:22:26PM -0800, Christoph Lameter wrote:
> I also need full MegaRAID and COMPAQ raid support! I'd rather use the
> standard kernel if possible. If you need help tell me.

MegaRAID is in already.  IIRC COMPAQ raid and DAC960 are both available
in the compact flavour.  There might be enough space to squeeze COMPAQ
raid into the standard flavour, but there is definitely no way of putting
both in (short of removing something else).
-- 
Debian GNU/Linux 2.2 is out! ( http://www.debian.org/ )
Email:  Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt


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




Re: DAC960 needed

2000-12-05 Thread Christoph Lameter

I need it to boot from cd cd uses standard.. Also what about SMP
support? Right now I tell my folks to install my special smp kernel
package later... Can we fix that somehow?

On Wed, 6 Dec 2000, Herbert Xu wrote:

> On Tue, Dec 05, 2000 at 09:22:26PM -0800, Christoph Lameter wrote:
> > I also need full MegaRAID and COMPAQ raid support! I'd rather use the
> > standard kernel if possible. If you need help tell me.
> 
> MegaRAID is in already.  IIRC COMPAQ raid and DAC960 are both available
> in the compact flavour.  There might be enough space to squeeze COMPAQ
> raid into the standard flavour, but there is definitely no way of putting
> both in (short of removing something else).
> -- 
> Debian GNU/Linux 2.2 is out! ( http://www.debian.org/ )
> Email:  Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]>
> Home Page: http://gondor.apana.org.au/~herbert/
> PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
> 


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




Re: DAC960 needed

2000-12-05 Thread Herbert Xu

On Tue, Dec 05, 2000 at 09:31:36PM -0800, Christoph Lameter wrote:
> I need it to boot from cd cd uses standard.. Also what about SMP

Use the second CD.

> support? Right now I tell my folks to install my special smp kernel
> package later... Can we fix that somehow?

Once we have initrd and reduce the number of flavours, yes.
-- 
Debian GNU/Linux 2.2 is out! ( http://www.debian.org/ )
Email:  Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt


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




Re: DAC960 needed

2000-12-05 Thread Christoph Lameter

On Wed, 6 Dec 2000, Herbert Xu wrote:

> On Tue, Dec 05, 2000 at 09:31:36PM -0800, Christoph Lameter wrote:
> > I need it to boot from cd cd uses standard.. Also what about SMP
> 
> Use the second CD.

I use a specialized CD generation scheme that makes all the essentials fit
in 50MB for a MicroCD.

COMPAQ Raid needs some additional devices that are not supported by
MAKEDEV yet.

Maybe I better stick with my customized boot-floppies.


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




Debian Boot CVS: dwhedon

2000-12-05 Thread Debian Boot CVS Master

CVSROOT:/cvs/debian-boot
Module name:debian-installer
Changes by: dwhedon 00/12/05 23:08:33

Modified files:
tools/ddetect  : Makefile mdmdetect.c 
tools/ddetect/debian: control rules 
Added files:
tools/ddetect/debian: ddetect.templates ethdetect.templates 
Removed files:
tools/ddetect  : snddetect.c 

Log message:
removed snddetect: was just a demo, clutter
remote uC-libc stuff: can be resurrected later if we want it
made some debconf templates to control passive/full detection, and also to get t
he ethernet module if we can't detect it, nothing integrated into installer yet


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




Dear Sacred Geometers

2000-12-05 Thread celdyn

Dear fellow researchers and students of  Sacred Geometry, 

Hi, I'm Nancy Baumgarten, MLA ASLA a landscape architect turned
calendar-maker driven by Spirit to create this work to really show how
we all are interconnected to Universe through the reality of our yearly 
cycles.

In looking for others of the same interests, I came across your website
and would like to offer the suggestion of link exchanges with you.
Please take a look at:  http://www.celestial-dynamics.com and see if it fits with 
your interests.  THANKS

 Here is The Calendar as it really is!
a highly unique, astronomically-correct astronaut's view of the
Earth/Moon's yearly orbit through time-space with spectacular 
NASA image of our Milky Way Galaxy

 You can chart  Your Course through the Cosmos with the
 ORBITAL CALENDAR26" X 38" Posterw/24-page book
 Includes  Mayan/Gregorian Concordance (GMS correlation).
 Please see at  http://www.celestial-dynamics.com

 After 11 years research and design on this project I am very proud of
The National Calendar Awards for: 
* Most Original, * Most Educational * Best Graphic Design

 All astronomic data has been reviewed by Guy Ottewell, Astronomer at
Furman University; and the newly added Mayan calendrics have been taken
from and approved by John Major Jenkins, an independent archeologist and 
highly original decoder of the remarkable work of the Mayans in the
Nature of TIME.  Also tested by Richard Crutchfield, PhD,
geomancer-dowser for sacred accuracy - it dowses out 5 miles!

Here are some comments from others:

 "I consider this map as important to understanding the reality of Time
as Buckminster Fuller's 'Dymaxion Map' and Tom Van Zant's 'Geosphere'
are to viewing the real world without distortion."
Mark Sutton  CEO, Aperion, Inc. Dallas, Texas
Computer visualization of scientific data;  Consultant to federal
 agencies on global curriculum development.

Tom Hawking of Morehead Planetarium,
University of North Carolina, Chapel Hill says of the calendar poster,
   "This space poster is simply the best most-easily understood 
explanation that I have ever seen for teaching some rather difficult 
concepts to grasp."

Geomancer-Dowser Richard Crutchfield, PhD.,
researcher of the  geomantic nature of sacred sites says of  the poster,

 "The Orbital Calendar Time-Space Poster is associated with a kind
of subtle but powerful energy field that...displays a certain energy
configuration that appears to be characteristic of places, objects and
activities long considered to be sacred and powerful. The origin of this
sacred energy seems to be beyond our galaxy (Hunab Ku) and the Orbital
Calendar serves as a channel for this energyit dowses out 5 miles
radius."

Each day's location and the exact time of the quarter phases of the
moon  is shown relative to the 13 ecliptic constellations; the
heliocentric location of each of the solar system's other planets are
also shown, including Chiron and Ceres.
  Please see at:  http://www.celestial-dynamics.com

Sincerely,

Nancy K. Baumgarten, MLA, ASLA
Celestial Dynamics
371 Sunset Drive
Asheville, NC 28804
828-254-5580





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