Subject: Re: UVM for sun3{,x}
To: None <fair@clock.org>
From: Chuck Cranor <chuck@dworkin.wustl.edu>
List: port-sun3
Date: 05/14/1998 10:05:37
>What needs to be done to make UVM work on sun3{,x}?
>	Erik <fair@clock.org>


since sun3 already supports MACHINE_NEW_NONCONTIG, adding UVM support
should not be too difficult.  just put options "UVM" in your kernel 
config file and try and compile a kernel.   fix all the missing functions
and unresolved references.  most of the changes needed will be things like 
changing function names:

#if defined(UVM)
        uvm_setpagesize();
#else 
        vm_set_page_size();
#endif

with luck, there will not be anything more difficult than that to look
at ...


chuck