Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Oct 2000 18:24:51 -0500
From:      "John W. De Boskey" <jwd@bsdwins.com>
To:        janb@cs.utep.edu
Cc:        freebsd-current@FreeBSD.ORG
Subject:   Re: /stand/sysinstall fdisk won't work
Message-ID:  <20001029182451.A33291@bsdwins.com>
In-Reply-To: <Pine.GSO.4.05.10010291218490.1916-100000@gecko>; from janb@cs.utep.edu on Sun, Oct 29, 2000 at 12:20:31PM -0700
References:  <Pine.GSO.4.05.10010291218490.1916-100000@gecko>

next in thread | previous in thread | raw e-mail | index | archive | help
I believe you need to update sysinstall.

The following is what I do to update sysinstall on our
'make release' machine. Similar should work for you (change
sysinstalldir & MAKEOBJDIR).

-John

------------------------------------------------------------------------
# 
# Install sysinstall into /stand/sysinstall (binary & manpage)
# 
function do_sysinstall {
   sysinstalldir="$RDIR/usr/src/release/sysinstall"
   if [[ -d $sysinstalldir ]]; then
      cd $sysinstalldir &&
      pwd &&
      export MAKEOBJDIR=/snap/release/usr/obj/usr/src/release/sysinstall &&
      make obj && make all install;
      return 0
   else
      echo "Hey! Where is $sysinstalldir!!"
      return 0
   fi
   bail 1 "Installation of sysinstall failed!"
   # NotReached
   return 1
}
------------------------------------------------------------------------

----- janb@cs.utep.edu's Original Message -----
> After installing the latest version of the current source,
> /stand/sysinstall's fdisk will not find any devices. Can anybody tell me
> what I forgot to do? I did do the /dev/MAKEDEV all.
> 
> JAn
> 
> 
> 
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-current" in the body of the message


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20001029182451.A33291>