0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

MacBook Air Early 2014 のFacetime HD(カメラ)をUbuntu 20.04で認識させる。

Last updated at Posted at 2020-12-28

MacBook Air (11-inch, Early 2014)のスペックではBig surは辛かったのでUbuntu入れた。
Facetime HD(カメラ)が認識してなかったのでいろいろ適当にやって認識させてみた。
多分、13インチモデルやMid 2013でも認識すると思う。

※ 2020/12/29
uvcvideoのロードが不要だったので記載削除
bdc_pciをロードしないようにする設定を追記

#1.なんか必要そうなパッケージをインストールする。

# apt install -y \
curl \
xz-utils \
cpio \
imagemagick \
fswebcam \
v4l-utils \
git

※imagemagick、fswebcam、v4l-utilsは何となく動作確認用に入れただけで必須ではない

#2.ファームウェアをインストール

# mkdir -p ~/git
# cd ~/git
# git clone https://github.com/patjak/facetimehd-firmware.git
# cd facetimehd-firmware
# make && make install

#3.ドライバをインストール

# cd ~/git
# git clone https://github.com/patjak/bcwc_pcie.git
# cd bcwc_pcie
# make
# mkdir -p /lib/modules/$(uname -r)/extra
# cp facetimehd.ko /lib/modules/$(uname -r)/extra

#4.ドライバをロードする。

# depmod -a
# modprobe -r bdc_pci
# modprobe -r facetimehd
# modprobe facetimehd

#5.起動時にドライバを自動的にロードするようにする。

# echo facetimehd > /etc/modules-load.d/facetimehd.conf
# echo blacklist bdc_pci > /etc/modprobe.d/blacklist-bdc_pci.conf 
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?