DragonFly BSD
DragonFly bugs List (threaded) for 2006-11
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

Re: fdisk problem in installworld


To: Matthew Dillon <dillon@xxxxxxxxxxxxxxxxxxxx>
From: Sascha Wildner <saw@xxxxxxxxx>
Date: Sat, 11 Nov 2006 20:37:44 +0100

Matthew Dillon wrote:
:
:With MACHINE set to pc32, installworld won't install fdisk (which is in :sbin/i386). Should fdisk be moved to sbin/pc32?
:
:Sascha
:
:-- :http://yoyodyne.ath.cx


    We could do that, or we could adjust /usr/src/sbin/Makefile to *ALSO*
    check for a MACHINE_ARCH subdirectory and push into that too:

    .if exists(${.CURDIR}/${MACHINE})
    SUBDIR+= ${MACHINE}
    .endif
    .if exists(${.CURDIR}/${MACHINE_ARCH})	<<<< ADDME
    SUBDIR+= ${MACHINE_ARCH}			<<<< ADDME
    .endif					<<<< ADDME

Which I think might be the correct solution here.

Please also take a look at /usr/sbin/boot0cfg which also doesn't get installed anymore because of the i386->pc32 changes.


Sascha

--
http://yoyodyne.ath.cx



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]