akida_dw_edma

(★ 9)

No description available.

File Explorer

  • 99-akida-pcie.rules
  • akida-pcie-core.c
  • build_kernel_w_cma.sh
  • cfg_dma_ram_phy_4MB.mk
  • cfg_dma_ram_phy_min.mk
  • cfg_dma_sram_phy.mk
  • dkms.conf
  • install.sh
  • kernel_versions.txt
  • LICENSE
  • Makefile
  • post_install.sh
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

apt-mark

View Details ▼

Utility to change the status of installed packages.

sudo apt-mark auto {{package}}

Mark a package as automatically installed:

sudo apt-mark hold {{package}}

Hold a package at its current version and prevent updates to it:

sudo apt-mark unhold {{package}}

Allow a package to be updated again:

🔍

dkms

View Details ▼

A framework that allows for dynamic building of kernel modules.

dkms status

List currently installed modules:

sudo dkms autoinstall

Rebuild all modules for the currently running kernel:

sudo dkms install -m {{acpi_call}} -v {{1.2.1}}

Install version 1.2.1 of the acpi_call module for the currently running kernel:

🔍

grub-mkconfig

View Details ▼

Generate a GRUB configuration file.

sudo grub-mkconfig

Do a dry run and print the configuration to `stdout`:

sudo grub-mkconfig {{[-o|--output]}} {{/boot/grub/grub.cfg}}

Generate the configuration file:

grub-mkconfig {{[-h|--help]}}

Display help:

🔍

reboot

View Details ▼

Reboot the system.

reboot

Reboot the system:

sudo reboot

Reboot immediately:

reboot {{[-p|--poweroff]}}

Power off the system (same as `poweroff`):

🔍

udevadm

View Details ▼

Linux `udev` management tool.

sudo udevadm monitor

Monitor all device events:

sudo udevadm monitor {{[-k|--kernel]}}

Print `uevents` sent out by the kernel:

sudo udevadm monitor {{[-u|--udev]}}

Print device events after being processed by `udev`:

🔍

update-grub

View Details ▼

This command is an alias of `grub-mkconfig --output /boot/grub/grub.cfg`.

tldr grub-mkconfig

View documentation for the original command:

// repository documentation