linux系统移植之Make

linux系统移植之Make

(1)make menuconfig或者make xconfig或者make config或者make ...(参见下面附make)[内核配置]

(2)make dep       [寻找依存关系]

(3)make clean     [清除以前构造内核时生成的所有目标文件、模块文件和一些临时文件]

(4)make romfs      [生成romfs文件系统]

(5)make image     [生成img文件]

(6)make            [完成]

附make

"make config"       Plain text interface.
"make menuconfig"   Text based color menus, radiolists & dialogs.
"make xconfig"     X windows (Qt) based configuration tool.
"make gconfig"     X windows (Gtk) based configuration tool.
"make oldconfig"      Default all questions based on the contents of your existing ./.config file   and asking about new config symbols.
"make silentoldconfig"   Like above, but avoids cluttering the screen with questions already answered.
"make defconfig"      Create a ./.config file by using the default symbol values from arch/$ARCH/defconfig.
"make allyesconfig"    Create a ./.config file by setting symbol values to 'y' as much as possible.
"make allmodconfig"   Create a ./.config file by setting symbol values to 'm' as much as possible.
"make allnoconfig"    Create a ./.config file by setting symbol values to 'n' as much as possible.
"make randconfig"      Create a ./.config file by setting symbol values to random values.

你可能感兴趣的:(linux系统移植之Make)