From subsecret
(Created page with "==kernel== tar xf linux-3.9.1.tar.xz cd tar xf linux-3.9.1 #we are borrowing existing config from system make oldconfig Now change to newsystem environment with chroot fro...") |
No edit summary |
||
Line 4: | Line 4: | ||
#we are borrowing existing config from system | #we are borrowing existing config from system | ||
make oldconfig | make oldconfig | ||
Now change to newsystem environment | Now change to newsystem environment using instructions in [[Trying tools in clean environment]] and make the kernel:. | ||
mkdir /boot | |||
cd linux-3.9.1 | |||
make all | |||
make install | |||
cd .. |
Latest revision as of 16:20, 9 May 2013
kernel
tar xf linux-3.9.1.tar.xz cd tar xf linux-3.9.1 #we are borrowing existing config from system make oldconfig
Now change to newsystem environment using instructions in Trying tools in clean environment and make the kernel:.
mkdir /boot cd linux-3.9.1 make all make install cd ..