Re: Make world problems from 4.9 to 5.1

2003-11-29 Thread Aaron Myles Landwehr
What exactly does make world do?...i know sometimes i accidently type it
instead of buildworld
 On Nov 26, 2003, at 8:25 PM, Lowell Gilbert wrote:
 make world?  Really?  You don't mean make buildworld?
 I guess the world target really does need to be removed.

 Yes.  Or fixed to do something more reasonable...?

 --- Makefile~   Sat Nov 29 00:02:13 2003
 +++ MakefileSat Nov 29 00:18:07 2003
 @@ -143,6 +143,13 @@
  @cd ${.CURDIR}; ${MAKE} pre-world
   .endif
  @cd ${.CURDIR}; ${MAKE} buildworld
 +   @cd ${.CURDIR}; ${MAKE} buildkernel
 +   @echo
 --
 +   @echo  About to run mergemaster  'make install*' targets
 +   @echo
 --
 +   @echo 
 +   @/usr/src/usr.sbin/mergemaster/mergemaster.sh -p
 +   @cd ${.CURDIR}; ${MAKE} -B installkernel
  @cd ${.CURDIR}; ${MAKE} -B installworld
   .if target(post-world)
  @echo


 --
 -Chuck

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Make world problems from 4.9 to 5.1

2003-11-29 Thread Lee Mx



From: Aaron Myles Landwehr [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: Charles Swiger [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Subject: Re: Make world problems from 4.9 to 5.1
Date: Sat, 29 Nov 2003 05:04:40 - (GMT)
What exactly does make world do?...i know sometimes i accidently type it
instead of buildworld
It will do both the make buildworld and the make installworld without the 
break in between that is
often/sometimes needed as in the  recient Current upgrade.

hope this helps.


 On Nov 26, 2003, at 8:25 PM, Lowell Gilbert wrote:
 make world?  Really?  You don't mean make buildworld?
 I guess the world target really does need to be removed.

 Yes.  Or fixed to do something more reasonable...?

 --- Makefile~   Sat Nov 29 00:02:13 2003
 +++ MakefileSat Nov 29 00:18:07 2003
 @@ -143,6 +143,13 @@
  @cd ${.CURDIR}; ${MAKE} pre-world
   .endif
  @cd ${.CURDIR}; ${MAKE} buildworld
 +   @cd ${.CURDIR}; ${MAKE} buildkernel
 +   @echo
 --
 +   @echo  About to run mergemaster  'make install*' targets
 +   @echo
 --
 +   @echo 
 +   @/usr/src/usr.sbin/mergemaster/mergemaster.sh -p
 +   @cd ${.CURDIR}; ${MAKE} -B installkernel
  @cd ${.CURDIR}; ${MAKE} -B installworld
   .if target(post-world)
  @echo


 --
 -Chuck
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
_
From the hottest toys to tips on keeping fit this winter, you’ll find a 
range of helpful holiday info here.  
http://special.msn.com/network/happyholidays.armx

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Make world problems from 4.9 to 5.1

2003-11-29 Thread Aaron Myles Landwehr
Is that the reason why make installworld produces errors sometimes
during its execution in 5.1. And afterwards many commands coredump.
Needless to say requiring a complete reinstall.
should I do make world in such cases instead of make buildworld 
make installworld?
-thanx
-aaron[EMAIL PROTECTED]




What exactly does make world do?...i know sometimes i accidently type
 it
instead of buildworld

 It will do both the make buildworld and the make installworld without the
 break in between that is
 often/sometimes needed as in the  recient Current upgrade.

 hope this helps.


  On Nov 26, 2003, at 8:25 PM, Lowell Gilbert wrote:
  make world?  Really?  You don't mean make buildworld?
  I guess the world target really does need to be removed.
 
  Yes.  Or fixed to do something more reasonable...?
 
  --- Makefile~   Sat Nov 29 00:02:13 2003
  +++ MakefileSat Nov 29 00:18:07 2003
  @@ -143,6 +143,13 @@
   @cd ${.CURDIR}; ${MAKE} pre-world
.endif
   @cd ${.CURDIR}; ${MAKE} buildworld
  +   @cd ${.CURDIR}; ${MAKE} buildkernel
  +   @echo
  --
  +   @echo  About to run mergemaster  'make install*' targets
  +   @echo
  --
  +   @echo 
  +   @/usr/src/usr.sbin/mergemaster/mergemaster.sh -p
  +   @cd ${.CURDIR}; ${MAKE} -B installkernel
   @cd ${.CURDIR}; ${MAKE} -B installworld
.if target(post-world)
   @echo
 
 
  --
  -Chuck


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Make world problems from 4.9 to 5.1

2003-11-28 Thread Charles Swiger
On Nov 26, 2003, at 8:25 PM, Lowell Gilbert wrote:
make world?  Really?  You don't mean make buildworld?
I guess the world target really does need to be removed.
Yes.  Or fixed to do something more reasonable...?

--- Makefile~   Sat Nov 29 00:02:13 2003
+++ MakefileSat Nov 29 00:18:07 2003
@@ -143,6 +143,13 @@
@cd ${.CURDIR}; ${MAKE} pre-world
 .endif
@cd ${.CURDIR}; ${MAKE} buildworld
+   @cd ${.CURDIR}; ${MAKE} buildkernel
+   @echo 
--
+   @echo  About to run mergemaster  'make install*' targets
+   @echo 
--
+   @echo 
+   @/usr/src/usr.sbin/mergemaster/mergemaster.sh -p
+   @cd ${.CURDIR}; ${MAKE} -B installkernel
@cd ${.CURDIR}; ${MAKE} -B installworld
 .if target(post-world)
@echo

--
-Chuck
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Make world problems from 4.9 to 5.1

2003-11-27 Thread Kent Stewart
On Wednesday 26 November 2003 07:33 pm, Eric Crist wrote:
 Ok,

 Read through that.  Now I'm getting the following after running the make
 buildworld:

 [[snip]]
 cc -fpic -DPIC -O -pipe -mcpu=pentiumpro -DPTHREAD_KERNEL
 -I/usr/src/lib/libpthread/../libc/include
 -I/usr/src/lib/libpthread/thread
 -I/usr/src/lib/libpthread/../../include
 -I/usr/src/lib/libpthread/arch/i386/include
 -I/usr/src/lib/libpthread/sys
 -I/usr/src/lib/libpthread/../../libexec/rtld-elf -fno-builtin
 -D_LOCK_DEBUG -D_PTHREADS_INVARIANTS -Wall
 -I/usr/src/lib/libpthread/../libc/i386 -I/usr/src/lib/libpthread/thread
 -c /usr/src/lib/libpthread/arch/i386/i386/thr_switch.S  -o thr_switch.So
 cc -fpic -DPIC -O -pipe -mcpu=pentiumpro -DPTHREAD_KERNEL
 -I/usr/src/lib/libpthread/../libc/include
 -I/usr/src/lib/libpthread/thread
 -I/usr/src/lib/libpthread/../../include
 -I/usr/src/lib/libpthread/arch/i386/include
 -I/usr/src/lib/libpthread/sys
 -I/usr/src/lib/libpthread/../../libexec/rtld-elf -fno-builtin
 -D_LOCK_DEBUG -D_PTHREADS_INVARIANTS -Wall  -c
 /usr/src/lib/libpthread/sys/lock.c -o lock.So
 building shared library libkse.so.1
 *** Error code 1

 Stop in /usr/src/lib/libpthread.

The one fix I found in the archives is what I was talking about but couldn't 
find in UPDATING. It involved

make NOLIBPTHREAD=true buildworld
...
make NOLIBPTHREAD=true installworld

and then redoing everything with out the NOLIBPTHREAD. According to the 
comments, it was supposed to be fixed in -current but was not added to 
RELENG_5_1 because it wasn't a security problem. I would search on the 
variable and see if you find the message(s) and a patch. I thought it was by 
Ruslan but that didn't produce anything in a search. I've run out of search 
engine choices.

FWIW, there are a few people that have bumped into it. ANy messages from them 
have been expired and deleted for a long time.

Kent
 *** Error code 1

 Stop in /usr/src/lib.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.

 [[end snip]]

 Please help.

 TIA

 Eric F Crist
 AdTech Integrated Systems, Inc
 (952) 403-9000

 -Original Message-
 From: Kent Stewart [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, November 26, 2003 8:02 PM
 To: Eric Crist
 Subject: Re: Make world problems from 4.9 to 5.1

 On Wednesday 26 November 2003 05:45 pm, you wrote:
  Are you referring to the:
 
  To get around the installworld problem, do:
  #cd /usr/src/usr.bin/sed
  #make install
  #cd /usr/src
  #make installworld
  If that doesn't work, then try:
  # make -k installworld
  # make installworld

 There is a sequence that starts

 To upgrade in-place from 4.x-stable to current
 --
 # 5.x uses more space than 4.x.  Also, the location of kernel
 # modules has changed.  If you are installing 5.0 onto a 4.x
 # system, you'll need about 30MB of free disk space on your /
 # partition.  If you have less than this, you may encounter
 difficult
 # to back out of problems with this procedure.  If /tmp is on
 # the / partition, you may want to completely remove all its
 content
 # before upgrading, as this can be a common source of shortage
 of
 # space on /.

 But I remember having a sequence where you had to do a -d and that isn't
 there
 any more. BTW, when they changed statfs on 5-current not too long ago, a
 make
 world would have rendered your system unbootable.

 I have a machine that is running 4-stable and because of the increased
 usage,
 I will do a clean install. Coral has a / with around 60-80 MB used and
 5.x
 needs about 2x more and I have /var and /tmp as 1.5GB systems because I
 log
 everything from cvsup to make index and store the logs on
 /var/log/build. I
 have either /usr/src or /usr/obj 49% used on 1.5GB partitions. I suspect
 it
 is /usr/obj but it is running XP right now. I like more freespace and
 will
 have a 500MB /. I have /usr/src and /usr/obj on different controllers
 (IDE)
 so that I have concurrent I/O. If you use scsi, it doesn't matter as
 much.

 Kent

  Eric F Crist
  AdTech Integrated Systems, Inc
  (952) 403-9000
 
  -Original Message-
  From: Kent Stewart [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, November 26, 2003 7:24 PM
  To: Eric Crist
  Subject: Re: Make world problems from 4.9 to 5.1
 
  On Wednesday 26 November 2003 04:44 pm, Eric Crist wrote:
   Hey all,
  
   I've got a Compaq Presario laptop with everything working great,
   except my wifi card.  I've decided that I've been using 5.1 for a
   long
  
   time on my desktop without issue, so I want to upgrade my laptop.  I
  
   can cvsup the sources fine, but when I enter into /usr/src and type
   make world, I get an error about checking the kernel to see if it's
   fresh enough and it dumps the core and exits.  Is anyone else having
  
   this problem?  I have

Make world problems from 4.9 to 5.1

2003-11-26 Thread Eric Crist
Hey all,

I've got a Compaq Presario laptop with everything working great, except
my wifi card.  I've decided that I've been using 5.1 for a long time on
my desktop without issue, so I want to upgrade my laptop.  I can cvsup
the sources fine, but when I enter into /usr/src and type make world, I
get an error about checking the kernel to see if it's fresh enough and
it dumps the core and exits.  Is anyone else having this problem?  I
have tried doing a cd /usr/src; rm -rf * to delete everything in the
/usr/src directory and rm -rf the /usr/obj directory.  This has always
worked for me in the past.

Any enlightenment would be appreciated, even a point to the correct FM.

TIA

Eric F Crist
AdTech Integrated Systems, Inc
(952) 403-9000 


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Make world problems from 4.9 to 5.1

2003-11-26 Thread Lowell Gilbert
Eric Crist [EMAIL PROTECTED] writes:

 I've got a Compaq Presario laptop with everything working great, except
 my wifi card.  I've decided that I've been using 5.1 for a long time on
 my desktop without issue, so I want to upgrade my laptop.  I can cvsup
 the sources fine, but when I enter into /usr/src and type make world, I
 get an error about checking the kernel to see if it's fresh enough and
 it dumps the core and exits.  Is anyone else having this problem?  I
 have tried doing a cd /usr/src; rm -rf * to delete everything in the
 /usr/src directory and rm -rf the /usr/obj directory.  This has always
 worked for me in the past.
 
 Any enlightenment would be appreciated, even a point to the correct FM.

make world?  Really?  You don't mean make buildworld?
I guess the world target really does need to be removed.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
and also see /usr/src/UPDATING
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Make world problems from 4.9 to 5.1

2003-11-26 Thread Minnesota Slinky
Yeah, the make world.  I've been doing this since 3.4.  Even on my
5.1-current desktop system, and I've never had any problems.  

In lieu of your email, though, I'm trying the make buildworld, make
kernel, make installkernel, and make installworld.

Eric F Crist
AdTech Integrated Systems, Inc
(952) 403-9000 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Lowell Gilbert
Sent: Wednesday, November 26, 2003 7:26 PM
To: Eric Crist
Cc: [EMAIL PROTECTED]
Subject: Re: Make world problems from 4.9 to 5.1


Eric Crist [EMAIL PROTECTED] writes:

 I've got a Compaq Presario laptop with everything working great, 
 except my wifi card.  I've decided that I've been using 5.1 for a long

 time on my desktop without issue, so I want to upgrade my laptop.  I 
 can cvsup the sources fine, but when I enter into /usr/src and type 
 make world, I get an error about checking the kernel to see if it's 
 fresh enough and it dumps the core and exits.  Is anyone else having 
 this problem?  I have tried doing a cd /usr/src; rm -rf * to delete 
 everything in the /usr/src directory and rm -rf the /usr/obj 
 directory.  This has always worked for me in the past.
 
 Any enlightenment would be appreciated, even a point to the correct 
 FM.

make world?  Really?  You don't mean make buildworld?
I guess the world target really does need to be removed.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
and also see /usr/src/UPDATING
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]