Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ This is usually caused by model detection issues:
* **Distro Compatibility Issues**:
The DAMX project is officially tested and supported on **Ubuntu only**. Other Linux distributions might introduce kernel or library incompatibilities, leading to missing features in the GUI.

For **Arch-based distributions**, make sure the following packages are installed:

```bash
sudo pacman -S linux-headers clang llvm lld
```
---

### 🛑 It Shows "Unknown Model" and My Model Isn’t in the Compatibility List
Expand Down
6 changes: 3 additions & 3 deletions scripts/local-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ install_drivers() {
fi

# Build and install drivers
make clean
make
make install
make clean
make CC=clang LD=ld.lld
sudo make CC=clang LD=ld.lld install

if [ $? -eq 0 ]; then
echo -e "${GREEN}Linuwu-Sense drivers installed successfully!${NC}"
Expand Down