akida_dw_edma
No description available.
File Explorer
- akida-edma.h
- dw-edma-core.c
- dw-edma-core.h
- dw-edma-v0-core.c
- dw-edma-v0-core.h
- dw-edma-v0-debugfs.c
- dw-edma-v0-debugfs.h
- dw-edma-v0-regs.h
- dw-hdma-v0-core.c
- dw-hdma-v0-core.h
- dw-hdma-v0-debugfs.c
- dw-hdma-v0-debugfs.h
- dw-hdma-v0-regs.h
- readme.txt
- dmaengine.h
- virt-dma.h
- akida-edma.h
- dw-edma-core.c
- dw-edma-core.h
- dw-edma-v0-core.c
- dw-edma-v0-core.h
- dw-edma-v0-debugfs.c
- dw-edma-v0-debugfs.h
- dw-edma-v0-regs.h
- dw-hdma-v0-core.c
- dw-hdma-v0-core.h
- dw-hdma-v0-debugfs.c
- dw-hdma-v0-debugfs.h
- dw-hdma-v0-regs.h
- readme.txt
- dmaengine.h
- virt-dma.h
- dmaengine.h
- virt-dma.h
- dmaengine.h
- virt-dma.h
- edma.h
- barrier.h
- bsd-3-clause.txt
- Readme.txt
- akd500_akdma_rc.sh
- Makefile
- mmap_access.c
- test.c
- test_host_ddr.c
- 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
jsDelivrjsDelivr 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 ▼
git clone
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 ▼
apt-mark
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 ▼
dkms
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 ▼
grub-mkconfig
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
Reboot the system.
reboot
Reboot the system:
sudo reboot
Reboot immediately:
reboot {{[-p|--poweroff]}}
Power off the system (same as `poweroff`):
udevadm
View Details ▼
udevadm
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 ▼
update-grub
This command is an alias of `grub-mkconfig --output /boot/grub/grub.cfg`.
tldr grub-mkconfig
View documentation for the original command:
