Search the Community
Showing results for 'vdso.lds'.
-
Problems installing zfs-dkms -> config_modules not enabled?
Igor replied to royalroot's topic in Orange Pi 5
Why would you want to compile? This wireless chip should just work out of the box (on latest images). Perhaps you have some weird ID that is not recognised? Module info: Google or forum search can reveal things https://forum.armbian.com/search/?q=vdso.lds&quick=1 -
Problems installing zfs-dkms -> config_modules not enabled?
Talb T replied to royalroot's topic in Orange Pi 5
hi, trying to compile wifi driver RTL8811AU on Orange PI 5, Armbian_22.11.4_Orangepi5_jammy_22.04_legacy_5.10.110_xfce_desktop. sudo git clone https://github.com/morrownr/8821au-20210708.git cd 8821au-20210708 sudo ./install-driver.sh I receive an error. Trying to investigate: lsb_release -a Distributor ID: Ubuntu Description: Ubuntu 22.04.2 LTS Release: 22.04 Codename: jammy uname -r 5.10.110-rockchip-rk3588 First, missing python2 and solved with sudo apt-get install python2 Then issue with modpost. Not existing. So, trying: cd /usr/src/linux-headers-5.10.110-rockchip-rk3588 sudo make modules_prepare answering to a lot of questions with the default, then scripts/Makefile.build:423: warning: overriding recipe for target 'modules.order' Makefile:1518: warning: ignoring old recipe for target 'modules.order' make[1]: *** No rule to make target 'arch/arm64/kernel/vdso/vdso.lds', needed by 'arch/arm64/kernel/vdso/vdso.so.dbg'. Stop. make: *** [arch/arm64/Makefile:194: vdso_prepare] Error 2 i'm not an expert. What's wrong , please? thanks -
Problems installing zfs-dkms -> config_modules not enabled?
nekozaki replied to royalroot's topic in Orange Pi 5
This is a temporary fix, but I can build it by adding the missing files and generating the files needed to build the module, as shown in the link. The command I ran is below. cd /usr/src/linux-headers-5.10.110-rockchip-rk3588 wget https://raw.githubusercontent.com/torvalds/linux/v5.10/arch/arm64/kernel/vdso/vdso.lds.S -P arch/arm64/kernel/vdso wget https://raw.githubusercontent.com/torvalds/linux/v5.10/arch/arm64/kernel/vdso/vgettimeofday.c -P arch/arm64/kernel/vdso wget https://raw.githubusercontent.com/torvalds/linux/v5.10/lib/vdso/gettimeofday.c -P lib/vdso wget https://raw.githubusercontent.com/torvalds/linux/v5.10/arch/arm64/kernel/vdso/note.c -P arch/arm64/kernel/vdso wget https://raw.githubusercontent.com/torvalds/linux/v5.10/arch/arm64/kernel/vdso/note.S -P arch/arm64/kernel/vdso wget https://raw.githubusercontent.com/torvalds/linux/v5.10/arch/arm64/kernel/vdso/sigreturn.S -P arch/arm64/kernel/vdso wget https://raw.githubusercontent.com/torvalds/linux/v5.10/arch/arm64/kernel/vdso/gen_vdso_offsets.sh -P arch/arm64/kernel/vdso chmod +x arch/arm64/kernel/vdso/gen_vdso_offsets.sh make KERNELVERSION=5.10.110-rockchip-rk3588 modules_prepare https://github.com/armbian/build/issues/2734#issuecomment-950277542