I am trying to learn what make install does in the context of building a custom kernel.
It seems like make install runs an install.sh script.
The problem is, I am not sure which of these script actually gets executed.
A quick find gives me:-
[root@li280-195 linux-3.3.3]# find . -name "install.sh"
./arch/arm/boot/install.sh
./arch/blackfin/boot/install.sh
./arch/ia64/install.sh
./arch/m32r/boot/compressed/install.sh
./arch/m68k/install.sh
./arch/mn10300/boot/install.sh
./arch/parisc/install.sh
./arch/powerpc/boot/install.sh
./arch/s390/boot/install.sh
./arch/sh/boot/compressed/install.sh
./arch/x86/boot/install.sh
I am on a 64-bit arch linux machine.
Any insights?
install.shscript asking forLILO. Would you happen to know how I can do amake installwithout usingLILO? – Calvin Cheng Apr 26 '12 at 7:27