Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/takaswie/linux-firewire-dkms
Currently this repository is maintained for Linux firewire subsystem and unit drivers.
https://github.com/takaswie/linux-firewire-dkms
ieee1394 linux subsystem
Last synced: 1 day ago
JSON representation
Currently this repository is maintained for Linux firewire subsystem and unit drivers.
- Host: GitHub
- URL: https://github.com/takaswie/linux-firewire-dkms
- Owner: takaswie
- Created: 2013-07-21T09:45:28.000Z (over 11 years ago)
- Default Branch: topic/backport-to-v6.11/main
- Last Pushed: 2024-09-13T09:36:15.000Z (2 months ago)
- Last Synced: 2024-09-13T23:21:15.344Z (2 months ago)
- Topics: ieee1394, linux, subsystem
- Language: C
- Homepage: http://ieee1394.docs.kernel.org/
- Size: 4.96 MB
- Stars: 39
- Watchers: 17
- Forks: 8
- Open Issues: 7
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
=================================================
Development and test for Linux firewire subsystem
=================================================2024/10/28
Takashi Sakamoto (坂本 貴史)NOTICE
======If you expect the previous state of this repository, please visit to
`master branch `_, however it is not
maintained anymore.General
=======Linux kernel has
`a subsystem to operate IEEE 1394 bus `_. This
repository is dedicated for its development and test.Previously, this repository is named as ``snd-firewire-improve`` for the development and test of
ALSA firewire stack. You can see
`master branch `_ for the purpose,
however it is not integrated anymore.Available kernel modules
========================* subsystem core functions
* firewire-core
* PCI device drivers
* firewire-ohci
* nosy* Network protocol implementation and unit drivers
* firewire-net
* SCSI protocol implementation and unit drivers
* firewire-sbp2
* FireDTV/FloppyDTV protocol implementation and unit drivers
* firedtv
* SCSI target protocol implementation and unit drivers
* sbp_target
* Audio and music protocol implementation and unit drivers
* snd-firewire-lib
* snd-fireworks
* snd-bebob
* snd-oxfw
* snd-dice
* snd-firewire-digi00x
* snd-firewire-tascam
* snd-firewire-motu
* snd-firefaceLicense
=======GNU General Public License version 2.0, according to the license in Linux kernel.
Easy instruction to work with DKMS
==================================DKMS - Dynamic Kernel Module Support is easy for installing or updating external modules.
``_This instruction is for Debian/Ubuntu. You need to make your arrangement for the other Linux
distribution you use, especially for module signing.These distributions provide the ``dkms`` package in their official repository. Install it at first.
::
$ sudo apt-get install dkms
Then one of ``linux-headers`` packages is required to make the kernel modules for the running
kernel. For example, if the running kernel is ``linux-generic``, it should be
``linux-headers-generic``.::
$ sudo apt-get install linux-headers-generic
When building and installing the kernel modules, execute the following commands.
::
$ git clone ``_
$ cd linux-firewire-dkms
$ sudo ln -s $(pwd) /usr/src/linux-firewire-6.11
$ sudo dkms install linux-firewire/6.11 --forceThe ``force`` option is required to replace the kernel modules existing in the system. After the
installation, for the affinity to package manager, it is preferable to add the following file
including the content equivalent to the ``force`` option.::
$ sudo mkdir -p /usr/share/dkms/modules_to_force_install
$ echo linux-firewire_version-override | sudo tee /usr/share/dkms/modules_to_force_install/linux-firewire.confWhen uninstalling and remove the kernel modules, execute the following commands.
::
$ sudo dkms remove linux-firewire/6.11 --all
$ sudo rm /usr/share/dkms/modules_to_force_install/linux-firewire.conf
$ sudo rm /usr/src/linux-firewire-6.11
$ rm -r snd-firewire-improve