Re: A few issues I ran into (and a quick question)

2000-10-26 Thread Dan Papasian

On Thu, Oct 26, 2000 at 10:43:44PM +0200, Rogier R. Mulhuijzen wrote:
 Oh, just out of curiosity, I build both my kernel and world with 
 -mcpu=pentiumpro and -march=pentiumpro. Would there be any reasons not to?

Anything above -O -pipe is not offically supported.  While you didn't
give your optimization level, it's probably -O2 or so, and that has
burned people in the past who built their kernels as such.

So the offical answer is no, you can't do that.  But the unoffical answer
is if it works for you, count your blessings and continue.  But
when something breaks, before you complain with a problem, go back
and compile your kernel with no more than -O -pipe.

-- 
  Dan Papasian
  ([EMAIL PROTECTED])

"How are we to distinguish the difference between
reality and dream?  Dreams result from a relationship
of atoms.  So do our bodies."
--Charles Augustus Lindbergh


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Burned by config changes?

2000-07-12 Thread Dan Papasian

What optimizations did you use when compiling your kernel?
(COPTFLAGS)

If it's anything more than -O -pipe, then that may very well
be your problem.

-Dan

On Tue, Jul 11, 2000 at 09:28:44PM -0400, Patrick Gardella wrote:
 I've somehow been burned by the config changes when I build world
 yesterday.  The build went fine, and then I followed the instructions
 on: http://people.freebsd.org/~imp/config-upd.html
 
 But when I rebooted, it freezes right when I type "boot".  Typing "boot
 -v" does not reveal anything more.  
 
 I've gone in with an old kernel which lets me boot, and tried building a
 new GENERIC one, with no luck.  It freezes at the same place.
 
 I have in place my /boot/device.hints, and it looks right.  
 
 Any pointers to get the system back up and running?  (I do have a
 backup, but I'd rather learn how to fix this!)
  
 Patrick Gardella
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with "unsubscribe freebsd-current" in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: let badsect recog IFCHR in 5.0-C

2000-06-27 Thread Dan Papasian

On Tue, Jun 27, 2000 at 05:38:21PM +0200, Alexander Langer wrote:
 Thus spake Clive Lin ([EMAIL PROTECTED]):
 
  -   memcpy(name_dir_end + 1, name_dir_end, strlen(name_dir_end) + 1);
  -   *name_dir_end = 'r';
  +   // un-needed.
  +   // memcpy(name_dir_end + 1, name_dir_end, strlen(name_dir_end) + 1);
  +   // *name_dir_end = 'r';
 
 Use /* */ comments or #if 0.

Actually, there was just a discussion on comp.lang.c about how
they aren't interchangable.  The 'un-needed' part will have
to be commented with /* */ because the preprocessor will
parse tokens before it evaluates conditionals.

Fairly interesting read, but the majority of you
probably knew that anyway :)

 Please see style(9) :)

I don't see style(9) referring to using #if 0, but that's ok :)

-Dan

 Alex
 
 -- 
 cat: /home/alex/.sig: No such file or directory


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Help! can't 'startx' - missing libc.so

2000-06-25 Thread Dan Papasian

This would probably be more appropriate on -questions.

I take it the problem started when you updated?  Sounds
like you may need to recompile your X server or install
compat3x (the latter is the sane choice)

-Dan

On Sun, Jun 25, 2000 at 11:46:24PM -0400, John Daniels wrote:
 Hi:
 
 I am using 4.0-STABLE
 
 John
 
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with "unsubscribe freebsd-current" in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: HEADS UP: Destabilization due to SMP development

2000-06-21 Thread Dan Papasian

Eivind Elkund was talking about doing something like
this.  He had a pretty nice document about it,
too.  If I recall, the name was "OVCS: Open Version Control System"

Perhaps someone could fill in the blanks?  I couldn't
find the document at the address I thought it was kept,
http://yes.no/perhaps/

I don't believe he had any code the last time we talked about it.
I do recall reading that he's using his time off to work on 
OVCS.  While I still don't think he has anything usable, 
you'd want to get in touch with him to reduce duplicated
effort.


-Dan

On Wed, Jun 21, 2000 at 09:59:25PM +0200, Brad Knowles wrote:
 At 9:34 PM +0200 2000/6/21, Soren Schmidt wrote:
 
   Using a non opensource commercial version control system is just
   to ask for bad carma, extended murphy fields and whatnot in an
   opensource volounteer project...
 
   Has anyone given any thought to what it would take to create an 
 open source version of something similar to perforce?  ;-)
 
 --
These are my opinions -- not to be taken as official Skynet policy
 ==
 Brad Knowles, [EMAIL PROTECTED]|| Belgacom Skynet SA/NV
 Systems Architect, Mail/News/FTP/Proxy Admin || Rue Colonel Bourg, 124
 Phone/Fax: +32-2-706.13.11/12.49 || B-1140 Brussels
 http://www.skynet.be || Belgium


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: current lockups

2000-03-06 Thread Dan Papasian

On Mon, Mar 06, 2000 at 08:27:18PM +0100, Dave Boers wrote:
  on a Dual celeron box (BP6) with UDMA66 enabled.
 
 Finally. I've been complaining about this on several occasions. I'm also
 running UDMA66 and Dual Celeron BP6. No overclocking. 

Can you people reproduce this on a kernel without SMP enabled?
Perhaps there is a locking issue?  However, that'd lead to a panic I'd imagine..
So see if you can reproduce this with one CPU running so we can at least
eliminate one of the variables.

-Dan Papasian
[EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: current lockups

2000-03-05 Thread Dan Papasian

1. Is your computer overclocked?

2. Is the computer totally frozen?  (i.e. scroll lock doesn't turn the light on)

3. Does similar load crash the box as well?  (try make -j2 world)

4. Does it freeze in the same spot?

5. Is the computer not responding to pings?

If you've answered yes to a good amount of these questions, there is a good
chance that your processor(s) are overheating.  Try improving the airflow to the
case (But using a household fan isn't recommended due to EMI)

-Dan Papasian
[EMAIL PROTECTED]

On Sat, Mar 04, 2000 at 11:50:10PM -0800, Arun Sharma wrote:
 Compiling Mozilla with make -j 2 got -current to lock up, twice in
 succession. I'm running a fairly recent snapshot (a week or two old)
 on a Dual celeron box (BP6) with UDMA66 enabled.
 
 The kernel had DDB enabled. I was running X, but I didn't see any
 signs of the kernel attempting to get into the debugger.
 
 Has this been fixed ? Is anyone interested in investigating ?
 I'll post more info if I find anything.
 
   -Arun
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with "unsubscribe freebsd-current" in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: which(1), rewritten in C?

2000-03-03 Thread Dan Papasian

Can you please give an example of where multiple arguments
doesn't work as expected?

It works fine over here.

-Dan Papasian

On Thu, Mar 02, 2000 at 07:59:37PM -0800, Alfred Perlstein wrote:
 --snip--
 
 It doesn't seem to handle multiple arguments.  File a PR and fix
 the issues and I'll look at getting it into post 4.0.
 
 -Alfred


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: which(1), rewritten in C?

2000-03-03 Thread Dan Papasian

Ah, well, I hadn't picked up that that was the desired behavoir.

Well, it is fixed: http://bugg.strangled.net/which.c 

-Dan Papasian
[EMAIL PROTECTED]

On Fri, Mar 03, 2000 at 07:09:29AM -0800, Alfred Perlstein wrote:
 * Dan Papasian [EMAIL PROTECTED] [000303 04:39] wrote:
  Can you please give an example of where multiple arguments
  doesn't work as expected?
  
  It works fine over here.
 
 ~ % which ls ln sh
 /bin/ls
 /bin/ln
 /bin/sh
 ~ % ./a.out ls ln sh
 /bin/sh
 
 -- 
 -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: /usr/ports/ too big?

2000-02-12 Thread Dan Papasian

An even more radical approach, and more controversial, would
be to remove /usr/ports entirely and use the concept of source packages.

pkg_add -r aumix would install the binary, and something along the lines of:

pkg-source_add -r aumix would download the source, patches, and whatever else
needed.

Considering most of us out there, myself included, have fallen madly in love
with ports the way it is, I doubt that the current system won't go away
for a long, long time.

-Dan Papasian
[EMAIL PROTECTED]

On Wed, Feb 09, 2000 at 09:58:06PM +0100, Kai Voigt wrote:
 Hello,
 
 I'm just doing a cvsup update of my system and -as many times before- I
 realize that /usr/ports/ takes a lot of time and also disk space to sync.
 
 # du -sk /usr/ports
 71118   /usr/ports
 
 Am I the only one being little annoyed by this fact?  Would it make
 any sense to offer some "castrated" ports repository.  Like putting
 a target "overview" into each /usr/ports/*/Makefile to list all available
 subdiretories.  Then, with some other command, one could fetch the
 current port's directory from the cvs server to install the port.
 
 Do these thoughts make any sense?
 
 Kai


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message