Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Jan 2003 15:23:24 +0300 (MSK)
From:      Nikolaj Potanin <nikolaj@potanin.spb.ru>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        Nikolaj Potanin <nikolaj@potanin.spb.ru>
Subject:   i386/47669: absence of ufm* entry in MAKEDEV script
Message-ID:  <200301301223.h0UCNOQn033419@drweb.spb.ru>

next in thread | raw e-mail | index | archive | help

>Number:         47669
>Category:       i386
>Synopsis:       absence of ufm* entry in MAKEDEV script
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jan 30 04:30:02 PST 2003
>Closed-Date:
>Last-Modified:
>Originator:     Nikolaj Potanin
>Release:        FreeBSD 4.7-STABLE i386
>Organization:
>Environment:
System: FreeBSD drweb.spb.ru 4.7-STABLE FreeBSD 4.7-STABLE #0: Thu Nov 14 13:29:55 MSK 2002 root@drweb.spb.ru:/usr/src/sys/compile/drweb_spb_ru i386


	
>Description:
ufm* is absent in /dev/MAKEDEV script. Device ufm compiled into the kernel requires an /dev/ufm* entry in /dev, wich is impossible to create with standard MAKEDEV.
	
>How-To-Repeat:
cd /dev/; ./MAKEDEV ufm0
>Fix:
add to MAKEDEV following:

ufm*)
        umask 7
        unit=`expr $i : 'ufm\(.*\)'`
        mknod ufm$unit c 200 `unit2minor $unit` root:operator
        umask 77
        ;;

and then run ./MAKEDEV ufm0
>Release-Note:
>Audit-Trail:
>Unformatted:

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




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