このページの2つのバージョン間の差分を表示します。
両方とも前のリビジョン前のリビジョン | |||
mae3xx_tips:bareboxenv_from_linux:start [2014/08/25 19:09] – admin | mae3xx_tips:bareboxenv_from_linux:start [2014/08/25 19:12] (現在) – admin | ||
---|---|---|---|
行 1: | 行 1: | ||
+ | ====== ブートローダの環境変数ファイルを、Linuxから編集する ====== | ||
+ | |||
+ | [[mae3xx_ope: | ||
+ | bareboxenv というコマンドを用意してあります。 | ||
+ | |||
+ | コマンド書式は下記のとおりです。 | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | Usage : bareboxenv [OPTION] DIRECTORY FILE | ||
+ | Load a barebox environment sector into a directory or | ||
+ | save a directory into a barebox environment sector | ||
+ | |||
+ | options: | ||
+ | -s save (directory -> environment sector) | ||
+ | -l load (environment sector -> directory) | ||
+ | -p < | ||
+ | -v verbose | ||
+ | user1@plum: | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | ===== 準備 ===== | ||
+ | |||
+ | mtd 領域に保存してある内容を対象としますので、ブートローダで " | ||
+ | |||
+ | < | ||
+ | Hit m for menu or any other key to stop autoboot: | ||
+ | |||
+ | type exit to get to the menu | ||
+ | barebox@plum-ma[512MiB]:/ | ||
+ | saving environment | ||
+ | barebox@plum-ma[512MiB]:/ | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | この後、Linux を起動します。 | ||
+ | |||
+ | < | ||
+ | barebox@plum-ma[512MiB]:/ | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | ===== mtd 領域からの読み込み ===== | ||
+ | |||
+ | 保存されている内容を、ディレクトリへ展開します。\\ | ||
+ | ブートローダの env 領域 /dev/mtd14 から読み込みます。 | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | この例では、/ | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | total 8 | ||
+ | drwxr-xr-x 2 root root 180 Aug 25 19:07 bin | ||
+ | drwxr-xr-x 2 root root 140 Aug 25 19:07 boot | ||
+ | -rw-r--r-- 1 root root 1062 Aug 25 19:07 config | ||
+ | -rw-r--r-- 1 root root 261 Aug 25 19:07 config-board | ||
+ | drwxr-xr-x 2 root root 80 Aug 25 19:07 data | ||
+ | drwxr-xr-x 2 root root 160 Aug 25 19:07 init | ||
+ | drwxr-xr-x 2 root root 240 Aug 25 19:07 menu | ||
+ | drwxr-xr-x 2 root root 60 Aug 25 19:07 network | ||
+ | user1@plum: | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | あとは、各種設定ファイルをエディタで編集・保存します。 | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | GNU nano 2.2.6 File: / | ||
+ | |||
+ | #!/bin/sh | ||
+ | |||
+ | # change network settings in / | ||
+ | # change mtd partition settings and automountpoints in /env/init/* | ||
+ | |||
+ | # | ||
+ | |||
+ | # set to false if you do not want to have colors | ||
+ | # | ||
+ | |||
+ | # user (used for network filenames) | ||
+ | # | ||
+ | |||
+ | # timeout in seconds before the default boot entry is started | ||
+ | global.autoboot_timeout=2 | ||
+ | |||
+ | # list of boot entries. These are executed in order until one | ||
+ | # succeeds. An entry can be: | ||
+ | # - a filename in /env/boot/ | ||
+ | # - a full path to a directory. All files in this directory are | ||
+ | # | ||
+ | # | ||
+ | |||
+ | # base bootargs | ||
+ | # | ||
+ | |||
+ | # don't format MTD automatically | ||
+ | # | ||
+ | [ Read 43 lines ] | ||
+ | ^G Get Help ^O WriteOut | ||
+ | ^X Exit ^J Justify | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | |||
+ | ===== mtd 領域への保存 ===== | ||
+ | |||
+ | 編集が完了したら、bareboxenv コマンドで mtd 領域へ保存します。 | ||
+ | |||
+ | < | ||
+ | user1@plum: | ||
+ | saving contents of / | ||
+ | user1@plum: | ||
+ | </ | ||