2

デバイスで PCAN を使用したいと考えています。そのためのプログラムと OTG ケーブルがありますが、最初にドライバーをインストールする必要があります。そして、メーカーのサイトでLinuxドライバーを見つけました。

カーネル ソース、アーム ツールチェーンをダウンロードし、ビルドとコンパイルに関するいくつかのサイトを読みましたが、ドライバーの追加については何も見つかりませんでした。

私の質問は、このドライバーをアンドロイドに追加またはインストールするにはどうすればよいですか? 端末はgalaxy tab 10.1 P7510です。

ご協力いただきありがとうございます。

4

1 に答える 1

5

Right, what you need to do is this:

  • Unzip the tarball source
  • Go into the respective directory of the source - cd peak-linux-driver-7.7/ as quoted by the above PDF

cd peak-linux-driver-x.y

make clean

make su -c “make install”</p>

When the build completes, issue this command

/sbin/modprobe pcan

However, having stated this, I do not see any reference to building with Android, so it looks like a fair bit of messing around with the source to get this to actually work on Android.

From what I can ascertain, this is more orientated towards the desktop PC only...

As is mentioned in a later comment clarifying this answer; the kernel would need to be recompiled from source as an arm v7 or v8 target. The part not mentioned was that it would also have to be statically linked to avoid requiring glibc in Android or bionic lib c in your computer.

于 2012-08-09T12:58:24.637 に答える