私はラズベリーパイのYocto画像をここでの手順を使って構築しました:http://www.jumpnowtek.com/rpi/Raspberry-Pi-Systems-with-Yocto.html。システムが起動すると、ローディングバー付きのRaspberry Piのデフォルトのpsplashスプラッシュ画面が表示されます。Yocto Raspberry Pi psplashの画像を変更します
メタラズベリー層には、システム起動時に見られるラズベリーのπ画像を定義するpsplash bbappendレシピファイルがあります。
[email protected]:~/poky-morty/meta-raspberrypi$ grep -R SPLASH *
conf/machine/include/rpi-base.inc:SPLASH = "psplash-raspberrypi"
recipes-core/images/rpi-basic-image.bb:SPLASH = "psplash-raspberrypi"
recipes-core/psplash/psplash_git.bbappend:SPLASH_IMAGES += "file://psplash-raspberrypi-img.h;outsuffix=raspberrypi"
DPI-base.incでSPLASH変数が使用するスプラッシュ画面を定義します(と思う...)とpsplash_git.bbappendファイルは、ラズベリーパイのマッチングうち接尾辞で画像をふり。
bbappendは次のようになります。
[email protected]:~/poky-morty/meta-raspberrypi$ cat recipes-core/psplash/psplash_git.bbappend
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
SPLASH_IMAGES += "file://psplash-raspberrypi-img.h;outsuffix=raspberrypi"
私は、カスタム層を持っていると私は、次の内容でその層に別のpsplash_git.bbappendを作った - とラズベリーパイスプラッシュ画面に使用する画像を上書きしようとします自分のイメージ:
[email protected]:~/rpi/meta-me/recipes-me/psplash$ cat psplash_git.bbappend
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
SPLASH_IMAGES += "file://social.jpg-img.h;outsuffix=raspberrypi"
私はbbappendが含ま私のカスタムで自分のイメージを構築しようとすると、私は次のエラーを取得する:
Initialising tasks: 100% |##################################| Time: 0:00:05
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
ERROR: psplash-0.1+gitAUTOINC+88343ad23c-r15 do_package: QA Issue: psplash-raspberrypi is listed in PACKAGES multiple times, this leads to packaging errors. [packages-list]
ERROR: psplash-0.1+gitAUTOINC+88343ad23c-r15 do_package: Fatal QA errors found, failing task.
ERROR: psplash-0.1+gitAUTOINC+88343ad23c-r15 do_package: Function failed: do_package
ERROR: Logfile of failure stored in: /home/me/rpi/build/tmp/work/arm1176jzfshf-vfp-poky-linux-gnueabi/psplash/0.1+gitAUTOINC+88343ad23c-r15/temp/log.do_package.63289
ERROR: Task (/home/me/poky-morty/meta/recipes-core/psplash/psplash_git.bb:do_package) failed with exit code '1'
NOTE: Tasks Summary: Attempted 3439 tasks of which 3430 didn't need to be rerun and 1 failed.
outsuffixをデフォルトに変更すると、同じエラー(重複ターゲット)が発生します。
私はこれに私のbbappendを変更することにより、このエラーを回避することができます
[email protected]:~/rpi/meta-me/recipes-me/psplash$ cat psplash_git.bbappend
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
SPLASH_IMAGES += "file://social.jpg-img.h;outsuffix=me"
をそして私はこのような私のlocal.confでSPLASH設定変数を上書きしよう:
# Set the Custom Splash screen
SPLASH = "psplash-me"
しかし、私が何をしているかにかかわらず、常にデフォルトのRaspberry Piをレンダリングします。
デフォルトのpsplashスプラッシュ画面を自分のイメージで上書きするにはどうすればよいですか?ありがとう。
より多くの情報を提供します[**ラズベリーパイStackExchange **](http://raspberrypi.stackexchange.com/)。これはタンジェントなコーディングに関連しているので、それは判断の呼び出しです。 –