2016-02-01から1ヶ月間の記事一覧

Directory Imports

http://doc.qt.io/qt-5/qtqml-syntax-imports.html#directory-imports A directory which contains QML documents may also be imported directly in a QML document. This provides a simple way for QML types to be segmented into reusable groupings: d…

DISTFILES を assets ディレクトリーへデプロイする方法

.pro ファイルに次の行を書く。 distfiles.path = /assets distfiles.files = $$DISTFILES INSTALLS += distfiles

パスワードの最小長さを変更する方法

/etc/pam.d/common-password の次の行を書き換える。 # here are the per-package modules (the "Primary" block) password [success=1 default=ignore] pam_unix.so obscure sha512 ↓ # here are the per-package modules (the "Primary" block) password […

root パスワードを変更する方法

レシピに次の行を追記する。 inherit extrausers EXTRA_USERS_PARAMS = "usermod -P (パスワード) root;" 参考文献 FAQ:How do I set or change the root password - Yocto Project

FireAlpaca で作った PNG ファイルを Word 2013 に貼り付けると小さくなる

原因 ファイルに埋め込まれた dpi 値が高いため。 解決策 ファイルの dpi 値を変更する。 FireAlpaca でファイルを開く。 [編集]メニュー>[画像解像度]を開く。 dpi 値を 96 に変更して、[OK]をクリックする。 ファイルを保存する。

do_unpack

http://www.yoctoproject.org/docs/latest/ref-manual/ref-manual.html#ref-tasks-unpack Unpacks the source code into a working directory pointed to by ${WORKDIR}. The S variable also plays a role in where unpacked source files ultimately resid…

スロットが呼ばれない

原因 connect 関数のシグナル名とスロット名に括弧を付けてなかったため。 × connect(this, SIGNAL( mySignal ), this, SLOT( mySlot )); ○ connect(this, SIGNAL( mySignal() ), this, SLOT( mySlot() ));

QMessageBox のフォントサイズを変更する

方法1 QApplication::setFont() を使う。 QApplication a(argc, argv); QFont f = a.font(); f.setPointSize(f.pointSize() * 2); a.setFont(f);

デプロイ先のリモートディレクトリーを設定する

プロジェクトファイル (.pro) に次の行を記述する。 target.path = /home/user INSTALLS = target

BusyBox の ls コマンドは -e で完全な日付と時刻を表示する

環境 BusyBox 1.22.1 説明 –full-time も –time-style も無いが、-e というオプションがある。 $ ls -e file -rw-rw-r-- 1 user user 0 Tue Feb 9 14:32:45 2016 file

ERROR: Function failed: Fetcher failure for URL:... Please set a valid SRCREV for url [...] (possible key names are ..., or use a ;rev=X URL parameter)

問題 bitbake を実行すると次のエラーが表示される。 ERROR: Function failed: Fetcher failure for URL: 'git://host/repository.git'. Please set a valid SRCREV for url ['SRCREV_default_pn-recipe', 'SRCREV_default', 'SRCREV_pn-recipe', 'SRCREV'] …