Das bekommen wir hin. Ich habe jetzt erst mal noch in meiner Dokumentation nachschauen müssen, was ich aktuell so gemacht habe.
Kurzfassung
root@rockpro64:~# lspci
00:00.0 PCI bridge: Fuzhou Rockchip Electronics Co., Ltd RK3399 PCI Express Root Port
01:00.0 SATA controller: Marvell Technology Group Ltd. 88SE9230 PCIe SATA 6Gb/s Controller (rev 11)
Kernel
root@rockpro64:~# uname -a
Linux rockpro64 4.4.202-1237-rockchip-ayufan-gfd4492386213 #1 SMP Sat Nov 23 13:55:47 UTC 2019 aarch64 GNU/Linux
Das ist das Image vom Kamil. https://github.com/ayufan-rock64/linux-build/releases/download/0.9.16/buster-minimal-rock64-0.9.16-1163-arm64.img.xz
https://github.com/ayufan-rock64/linux-build/releases/download/0.9.16/buster-minimal-rockpro64-0.9.16-1163-arm64.img.xz
SATA-Karte
nano /boot/extlinux/extlinux.conf
und pci=nomsi ergänzen.
timeout 10
menu title select kernel
label kernel-4.4.197-1236-rockchip-ayufan-g30faab37e339
kernel /boot/vmlinuz-4.4.197-1236-rockchip-ayufan-g30faab37e339
initrd /boot/initrd.img-4.4.197-1236-rockchip-ayufan-g30faab37e339
devicetreedir /boot/dtbs/4.4.197-1236-rockchip-ayufan-g30faab37e339
append rw panic=10 init=/sbin/init coherent_pool=1M ethaddr=${ethaddr} eth1addr=${eth1addr} serial=${serial#} cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory swapaccount=1 pci=nomsi root=LABEL=linux-root rootwait rootfstype=ext4
label kernel-4.4.197-1236-rockchip-ayufan-g30faab37e339-memtest
kernel /boot/vmlinuz-4.4.197-1236-rockchip-ayufan-g30faab37e339
initrd /boot/initrd.img-4.4.197-1236-rockchip-ayufan-g30faab37e339
devicetreedir /boot/dtbs/4.4.197-1236-rockchip-ayufan-g30faab37e339
append rw panic=10 init=/sbin/init coherent_pool=1M ethaddr=${ethaddr} eth1addr=${eth1addr} serial=${serial#} cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory swapaccount=1 pci=nomsi root=LABEL=linux-root rootwait rootfstype=ext4 memtest
Bis hierhin mal machen und dann schauen wir ob die Platten da sind. So sieht das bei mir aus.
root@rockpro64:~# fdisk -l
Disk /dev/ram0: 4 MiB, 4194304 bytes, 8192 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk /dev/mtdblock0: 4 MiB, 4161536 bytes, 8128 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mtdblock1: 32 KiB, 32768 bytes, 64 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mtdblock2: 256 KiB, 262144 bytes, 512 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/sda: 3,7 TiB, 4000787030016 bytes, 7814037168 sectors
Disk model: WDC WD40EZRZ-00G
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 196AB914-8A3A-49FE-A24D-CBB0D2DF910C
Device Start End Sectors Size Type
/dev/sda1 2048 7814037134 7814035087 3,7T Linux filesystem
Disk /dev/sdb: 3,7 TiB, 4000787030016 bytes, 7814037168 sectors
Disk model: WDC WD40EZRZ-00G
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: CA2F3E47-6F64-4001-AD07-4BC36689F18C
Device Start End Sectors Size Type
/dev/sdb1 2048 7814037134 7814035087 3,7T Linux filesystem
Disk /dev/sdc: 465,8 GiB, 500107862016 bytes, 976773168 sectors
Disk model: Portable SSD T5
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 33553920 bytes
Disklabel type: gpt
Disk identifier: 4252573B-53A6-4918-89A6-7802D8D8031F
Device Start End Sectors Size Type
/dev/sdc1 64 8063 8000 3,9M Linux filesystem
/dev/sdc2 8064 8191 128 64K Linux filesystem
/dev/sdc3 8192 16383 8192 4M Linux filesystem
/dev/sdc4 16384 24575 8192 4M Linux filesystem
/dev/sdc5 24576 32767 8192 4M Linux filesystem
/dev/sdc6 32768 262143 229376 112M Microsoft basic data
/dev/sdc7 262144 976773134 976510991 465,7G Linux filesystem
Disk /dev/md0: 3,7 TiB, 4000650690560 bytes, 7813770880 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
root@rockpro64:~#
Ich hoffe du konntest bis hierhin folgen!?