Lines Matching refs:make
102 make mrproper
119 ``make O=output/dir`` 選項可以爲輸出文件(包括 .config)指定備用位置。
128 make O=/home/name/build/kernel menuconfig
129 make O=/home/name/build/kernel
130 sudo make O=/home/name/build/kernel modules_install install
132 請注意:如果使用了 ``O=output/dir`` 選項,那麼它必須用於make的所有調用。
144 "make config" 純文本界面。
146 "make menuconfig" 基於文本的彩色菜單、選項列表和對話框。
148 "make nconfig" 增強的基於文本的彩色菜單。
150 "make xconfig" 基於Qt的配置工具。
152 "make gconfig" 基於GTK+的配置工具。
154 "make oldconfig" 基於現有的 ./.config 文件選擇所有選項,並詢問
157 "make olddefconfig"
160 "make defconfig" 根據體系架構,使用arch/$arch/defconfig或
164 "make ${PLATFORM}_defconfig"
169 "make allyesconfig"
173 "make allmodconfig"
177 "make allnoconfig" 通過儘可能將選項值設置爲「n」,創建一個
180 "make randconfig" 通過隨機設置選項值來創建./.config文件。
182 "make localmodconfig" 基於當前配置和加載的模塊(lsmod)創建配置。禁用
194 host$ make LSMOD=/tmp/mylsmod \
200 "make localyesconfig" 與localmodconfig類似,只是它會將所有模塊選項轉換
203 "make kvmconfig" 爲kvm客體內核支持啓用其他選項。
205 "make xenconfig" 爲xen dom0客體內核支持啓用其他選項。
207 "make tinyconfig" 配置儘可能小的內核。
212 - ``make config`` 注意事項:
234 - 執行 ``make`` 來創建壓縮內核映像。如果您安裝了lilo以適配內核makefile,
240 - 如果您將內核的任何部分配置爲模塊,那麼還必須執行 ``make modules_install`` 。
247 向 ``make`` 命令傳遞 ``V=1`` 來實現,例如::
249 make V=1 all
255 與工作內核版本號相同的新內核,請在進行 ``make modules_install`` 安裝
342 爲此,請首先使用-g編譯內核;適當地編輯arch/x86/Makefile,然後執行 ``make
343 clean`` 。您還需要啓用CONFIG_PROC_FS(通過 ``make config`` )。