Package Details: yt6801-dkms 1.0.28-3

Git Clone URL: https://aur.archlinux.org/yt6801-dkms.git (read-only, click to copy)
Package Base: yt6801-dkms
Description: Kernel module for Motorcomm YT6801 ethernet controller (DKMS)
Upstream URL: https://deb.tuxedocomputers.com/ubuntu/pool/main/t/tuxedo-yt6801/
Licenses: GPL-2.0-or-later
Submitter: ylyl
Maintainer: ylyl
Last Packager: ylyl
Votes: 2
Popularity: 0.35
First Submitted: 2024-06-19 11:52 (UTC)
Last Updated: 2024-08-07 17:27 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

woodwose commented on 2024-10-19 04:57 (UTC)

Ahoy! I have created a git package: https://aur.archlinux.org/packages/tuxedo-yt6801-dkms-git which uses the new codebase from https://gitlab.com/tuxedocomputers/development/packages/tuxedo-yt6801

Dinarium commented on 2024-10-18 10:09 (UTC) (edited on 2024-10-18 14:16 (UTC) by Dinarium)

Hello! The driver package that this tar is based is not available anymore.

This is the location for the latest debian package version provided by Tuxedo: https://deb.tuxedocomputers.com/ubuntu/pool/main/t/tuxedo-yt6801/tuxedo-yt6801_1.0.29tux0_all.deb

As a temporary solution: - Downloaded it and used debtab with latest driver .deb and installed the package generated using commands below:

  • debtap tuxedo-yt6801_1.0.29tux0_all.deb
  • sudo pacman -U tuxedo-yt6801-1.0.29tux0-1-any.pkg.tar.zst

Reboot and NIC should be working. (Had to set extra set of DNSes on my case)

silvers12345 commented on 2024-09-27 07:37 (UTC) (edited on 2024-09-27 08:42 (UTC) by silvers12345)

@joern_h; Thanks, I missed out on this installation supposedly (and didnt properly read the chinese post). Can confirm that it works for the non-rt versions.

wszqkzqk commented on 2024-09-19 01:46 (UTC)

arch=('x86_64')

This dkms package contains no ELF, and it contains source code only, so it should be arch=('any'). You can also find that your upstream ubuntu set its arch to all instead of amd64.

joern_h commented on 2024-09-18 19:43 (UTC)

@silvers12345 Make sure you have linux-headers for your kernel installed

silvers12345 commented on 2024-09-15 15:30 (UTC) (edited on 2024-09-15 15:31 (UTC) by silvers12345)

Just curious - does Pacman installation work for anybody? I'm less successful on linux69 6.9.12-3. Or is there anything else required after installation to get some ethernet/HW response in? There was no readme info included :)

ylyl commented on 2024-08-07 17:28 (UTC)

@shuohuili Thank you for your feedback, I updated the PKGBUILD file to substitute the kernel name in Makefile

shuohuili commented on 2024-08-07 03:01 (UTC)

Autoinstall from pacman updating the kernel fails. This is because uname -r returns the current kernel name, which is different from the updated one. Maybe we should substitute

KSRC = /lib/modules/`uname -r`/build
KDST = /lib/modules/`uname -r`/kernel/drivers/net/ethernet/motorcomm/

to

KERNELRELEASE ?= `uname -r`
KSRC = /lib/modules/$(KERNELRELEASE)/build
KDST = /lib/modules/$(KERNELRELEASE)/kernel/drivers/net/ethernet/motorcomm/

in the Makefile

ylyl commented on 2024-07-09 11:20 (UTC)

@rayae The linux-headers is not included because headers are already listed as optional dependencies of dkms and each kernel package has its own header package, for more information you can see https://wiki.archlinux.org/title/DKMS_package_guidelines#Dependencies

rayae commented on 2024-07-09 05:40 (UTC)

  • 解决如下问题:
(2/4) Install DKMS modules
==> ERROR: Missing usr kernel headers for module yt6801/1.0.28.
==> ERROR: Missing tmp kernel headers for module yt6801/1.0.28.
==> ERROR: Missing srv kernel headers for module yt6801/1.0.28.
==> ERROR: Missing sys kernel headers for module yt6801/1.0.28.
==> ERROR: Missing var kernel headers for module yt6801/1.0.28.
==> ERROR: Missing dev kernel headers for module yt6801/1.0.28.
==> ERROR: Missing lib kernel headers for module yt6801/1.0.28.
==> ERROR: Missing mnt kernel headers for module yt6801/1.0.28.
==> ERROR: Missing proc kernel headers for module yt6801/1.0.28.
==> ERROR: Missing run kernel headers for module yt6801/1.0.28.
==> ERROR: Missing bin kernel headers for module yt6801/1.0.28.
==> ERROR: Missing opt kernel headers for module yt6801/1.0.28.
==> ERROR: Missing root kernel headers for module yt6801/1.0.28.
==> ERROR: Missing etc kernel headers for module yt6801/1.0.28.
==> ERROR: Missing home kernel headers for module yt6801/1.0.28.
==> ERROR: Missing share kernel headers for module yt6801/1.0.28.
==> ERROR: Missing boot kernel headers for module yt6801/1.0.28.
==> ERROR: Missing lib64 kernel headers for module yt6801/1.0.28.
==> ERROR: Missing sbin kernel headers for module yt6801/1.0.28.

  • 增加如下依赖
sudo pacman -S linux-headers