Inspiron duo 上のUbuntu 11.10 x86_64 にBroadcom Crystal HD Decoder Driver を組み込んでみた。
必要なパッケージのインストール$ sudo apt-get install build-essential g++ automake autoconf libtool libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev
|
ソースの取得$ git clone git://linuxtv.org/jarod/crystalhd.git
|
ドライバーのインストール$ cd driver/linux/ $ autoconf $ ./configure $ make $ sudo make install
|
コンパイル時に警告がでるので、とりあえず-w をつけた。
ライブラリのインストール$ cd linux_lib/libcrystalhd/ $ make $ sudo make install
|
gstreamer プラグインのインストール$ cd filters/gst/gst-plugin/ $ ./autogen.sh $ make $ sudo make install
|
ファームウェアのコピー$ sudo cp firmware/fwbin/70015/* /lib/firmware/ $ sudo cp firmware/fwbin/70012/* /lib/firmware/
|