web-dev-qa-db-ja.com

Linuxカーネルのビルド構成を自動化するスクリプトmake menuconfigの方法は?

Linuxビルドを自動化したいのですが、最終的には非常に手動のステップのように見えるものを実行する必要があるところまで到達しました:make menuconfig。これは、OSとカーネル構成の間で構成を同期するようですか?

cp git-tracked-config .config
make defconfig 
make menuconfig # <- how to automate/script this?
make V=s

基本的に、ビルドスクリプトのmake menuconfigの呼び出しを削除するにはどうすればよいですか?

余談ですが、これはmake menuconfigを呼び出さずに実行したときに発生するように見えるビルドエラーに対する反応です。

make[1]: *** No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'.  Stop.

おそらくメイクファイル自体が存在しないか、メイクファイルがそのルールを含むように生成/モーフィングされていないために、メイクファイルにルールが欠けているようですが、それは別の質問です。

これをすべてまとめるよりスマートな方法があるかもしれません。追跡していないけれどもすべき他の構成はありますか(oldconfigなど)?

10
tarabyte

Linuxカーネルビルドシステムは多くのビルドターゲットを提供します。それを知る最良の方法は、おそらくmake helpを実行することです。

Configuration targets:
  config      - Update current config utilising a line-oriented program
  nconfig         - Update current config utilising a ncurses menu based program
  menuconfig      - Update current config utilising a menu based program
  xconfig     - Update current config utilising a QT based front-end
  gconfig     - Update current config utilising a GTK based front-end
  oldconfig   - Update current config utilising a provided .config as base
  localmodconfig  - Update current config disabling modules not loaded
  localyesconfig  - Update current config converting local mods to core
  silentoldconfig - Same as oldconfig, but quietly, additionally update deps
  defconfig   - New config with default from Arch supplied defconfig
  savedefconfig   - Save current config as ./defconfig (minimal config)
  allnoconfig     - New config where all options are answered with no
  allyesconfig    - New config where all options are accepted with yes
  allmodconfig    - New config selecting modules when possible
  alldefconfig    - New config with all symbols set to default
  randconfig      - New config with random answer to all options
  listnewconfig   - List new options
  olddefconfig    - Same as silentoldconfig but sets new symbols to their default value
  kvmconfig   - Enable additional options for guest kernel support
  tinyconfig      - Configure the tiniest possible kernel

Jimmijがコメントで言っているように、興味深い部分はoldconfig関連ターゲットにあります。

個人的には、silentoldconfigを使用することをお勧めします(.configファイルで何も変更されていない場合、または.configファイルを新しいカーネルで更新した場合はolddefconfig

8
perror

merge_config.sh 構成フラグメント

$ cd linux
$ git checkout v4.9
$ make x86_64_defconfig
$ grep -E 'CONFIG_(DEBUG_INFO|GDB_SCRIPTS)[= ]' .config
# CONFIG_DEBUG_INFO is not set
$ # GDB_SCRIPTS depends on CONFIG_DEBUG_INFO in lib/Kconfig.debug.
$ cat <<EOF >.config-fragment
> CONFIG_DEBUG_INFO=y
> CONFIG_GDB_SCRIPTS=y
> EOF
$ # Order is important here. Must be first base config, then fragment.
$ ./scripts/kconfig/merge_config.sh .config .config-fragment
$ grep -E 'CONFIG_(DEBUG_INFO|GDB_SCRIPTS)[= ]' .config
CONFIG_DEBUG_INFO=y
CONFIG_GDB_SCRIPTS=y

プロセスの置換は残念ながら動作しません

./scripts/kconfig/merge_config.sh Arch/x86/configs/x86_64_defconfig \
    <( printf 'CONFIG_DEBUG_INFO=y\nCONFIG_GDB_SCRIPTS=y\n' ) 

理由: https://unix.stackexchange.com/a/164109/32558

merge_config.shは、make alldefconfigターゲットの単純なフロントエンドです。

クロスコンパイルする場合、merge_config.shを実行するときにArchをエクスポートする必要があります。例:

export Arch=arm64
export CROSS_COMPILE=aarch64-linux-gnu-
make defconfig
./scripts/kconfig/merge_config.sh .config .config-fragment

マージされた出力ファイルは、KCONFIG_CONFIG環境変数を使用して明示的に指定できます。それ以外の場合は、.configを上書きするだけです。

KCONFIG_CONFIG=some/path/.config ./scripts/kconfig/merge_config.sh .config .config-fragment

BuildrootはBR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILESで自動化します: https://stackoverflow.com/questions/1414968/how-do-i-configure-the-linux-kernel-within-buildroot

関連: https://stackoverflow.com/questions/7505164/how-do-you-non-interactively-turn-on-features-in-a-linux-kernel-config-file

CentOSカーネルをアップグレードしたくて、複数のマシンでアップグレードする必要があったため、同じ問題が発生しました。ここで私の新しいCentOSカーネルツリーが/linux-5.1にあると仮定します(私はrootアカウントにログインしています)

  1. cd /linux-5.1
  2. make menuconfigを実行して変更を加え、.configに保存します
  3. /linux-5.1/.configファイルを開発サーバーにコピーします
  4. 次のマシンをアップグレードするには、開発サーバーから.configファイルを新しいマシンの/linux-5.1/.configにコピーします。

これが同じ窮地にいる誰かを助けることを願っています。

0
schmiddy