View Single Post
  #4   (View Single Post)  
Old 21st October 2008
graudeejs's Avatar
graudeejs graudeejs is offline
Real Name: Aldis Berjoza
ISO Quartermaster
 
Join Date: Jul 2008
Location: Riga, Latvia
Posts: 589
Default

Quote:
Originally Posted by KernelPanic View Post
For my custom SMP kernel I suck in GENERIC and then do the following:


# Old CPUs
nocpu I486_CPU
nocpu I586_CPU

# Change the scheduler
nooptions SCHED_4BSD
options SCHED_ULE

# I do not have AGP
nodevice agp
wth is that?
if you want to disable something from generic
use # to comment line
Code:
# Old CPUs
#cpu   I486_CPU
#cpu   I586_CPU 
cpu   I686_CPU 

# Change the scheduler
#options       SCHED_4BSD
options SCHED_ULE

# I do not have AGP
#device        agp

Last edited by graudeejs; 21st October 2008 at 09:43 PM.
Reply With Quote