@Momo-0
The 3.5mm headphone jack has output and MIC functions.
Posts made by george
-
RE: Headphone Jack
-
RE: 为什么我的ubuntu系统很多基础指令都找不到阿
@nosorrow
我们提供的是纯净版,基础的一些包可以自己用命令安装,比如gitsudo apt-get install git
-
RE: 为什么ubuntu在终端进行apt-get update更新的时候有很多忽略开头的文件,无法全部更新
@nosorrow
这个大概率是源服务器问题,可以换其它源试试。 -
RE: 为什么cat value后显示0,实际测量电压为3.3V
@weiweiwei
具体操作的是哪个GPIO,截图出来看一下,这种控制不到的问题大概率是这个口没有工作在gpio模式。 -
RE: Step by step creation of Coolpi image files
@plumlis
At present, the mainline kernel is stuck in the edp driver. Due to significant changes in the display framework, the workload of porting is huge. The mainline kernel can be used in subsequent updates. -
RE: Step by step creation of Coolpi image files
@plumlis
Refer to the following link to compile and install.
https://github.com/coolpi-george/panfork.git -
Step by step creation of Coolpi image files
The partitioning situation of the Coolpi image file is as follow
- The first partition has a size of 512M and a partition format of fat32, used to store boot- files. The default boot mode is extLinux.
- The second partition is the file system, with different sizes depending on the distribution. The partition format is ext4. The label of the partition is writable, which needs to be consistent with the configuration information under extLinux.
- The file of the boot partition is shown in the following figure, which you can access through/ The build kernel. sh command compiles the coolpi kernel, and then the files in the out directory need to be copied to the boot partition.
- The content is as follows extlinux.conf,Pay special attention to the loading method of the file system, which is searched through label (writable). Of course, it can also be modified to UUID or other types.
default Linux coolpi label Linux coolpi kernel /Image initrd /initrd.img fdt /rk3588-cpcm5-notebook-v20.dtb append root=LABEL=writable rw rootfstype=ext4 console=ttyS0,115200n81 quiet splash plymouth.ignore-serial-consoles vt.global_cursor_default=1 irqchip.gicv3_pseudo_nmi=0 net.ifnames=0
Start creating a mirror image
- Create an 8GB img file using the following command. Then partition and format.
LOOP_NUMBER=$(losetup -f) dd if=/dev/zero of=./coolpi.img bs=1M count=8192 printf 'n\np\n1\n32768\n1081343\nn\np\n2\n1081344\n16777215\nw\n' | fdisk ./coolpi.img partx -a -v ./coolpi.img mkfs.vfat $LOOP_NUMBER"p1" echo 'yes\n' | mkfs.ext4 $LOOP_NUMBER"p2" e2label $LOOP_NUMBER"p2" writable
- Copy files to boot partition,kernel-dir is the file directory corresponding to the Coolpi kernel.
mkdir ./mnt mount $LOOP_NUMBER"p1" ./mnt cp kernel-dir/out/* ./mnt -r umount ./mnt
- Create a file system, Add rc.local file to automatically expand partitions and configure some system node permissions.
wget https://mirrors.aliyun.com/archlinuxarm/os/ArchLinuxARM-aarch64-latest.tar.gz mkdir ./archlinux tar -zxvf ArchLinuxARM-aarch64-latest.tar.gz -C ./archlinux/ mount $LOOP_NUMBER"p2" ./mnt cp -rf ./archlinux/* ./mnt/ tar -zxvf kernel-dir/out/modules.tar.gz -C ./mnt/lib/ cp ./rc.local ./mnt/etc/ umount ./mnt e2fsck -p -f $LOOP_NUMBER"p2" resize2fs -M $LOOP_NUMBER"p2" losetup -D $LOOP_NUMBER
-
RE: GenBook-RK3588 Crowdfunding projects
@plumlis
目前的大容量电池厂家给的最小起订量是3K,交期要2个月,认证还要45天。众筹的这个来不及上大容量电池了。只能后续作为配件再升级了。 -
RE: Alternative Boot Options for CM5 V10?
@yusuf-tmp said in Alternative Boot Options for CM5 V10?:
I have been using a USB drive to boot for a while now. I noticied that if I flashed a M.2 drive with an image ad tried to boot it it would not boot, is there anyway I could get the M.2 Drive as my boot drive?
At present, uboot does not support nvme boot, so if you want to implement booting through M2, you need to first improve the uboot driver.
-
RE: Try to Use Archlinux Arm
@prcups said in Try to Use Archlinux Arm:
Direct firmware load for arm/mali/arch10.8/mali_csffw.bin failed with error -2
This bin file path needs to be modified.
-
RE: Can I get imx462 mipi camera driver?
@etrin
There are many models in the driver kernel source code of the camera, but this can only ensure that the system recognizes the nodes. For the camera part, it is more important to debug the ISP effect file, which is highly specialized and difficult for those who have not been exposed to it to handle. -
RE: CM5的PCIe不能识别SSD, lspci也没有!
@Albert
标准的PCIE连接器接入的电压值是12V,先确认TYPEC接口默认诱导出了12V电压。然后可以尝试先使用网卡等设备测试,确保正常工作以后再使用PCIE转SATA的转接板。 -
RE: 6.1 Kernel GPU firmware update
@mainbord
The efficiency of the Panthor driver is currently lower, and we look forward to future updates. -
RE: 6.1 Kernel GPU firmware update
@mainbord
The mali_csffw.bin path corresponding to the Panthor driver needs to be modified. The dmesg information will show the new loading path, and copying it on the system will enable GPU acceleration. -
RE: BredOS for the Cool Pi 4B
@rippanda12
Thank you for your support of Coolpi products. Could you further introduce the features and advantages of the system? We hope to see CM5-LAPTOP products perfect your system. -
RE: 6.1 Kernel GPU firmware update
@plumlis
The function of switching between speakers and headphones is now OK, and the 6.1 kernel has been updated to the latest version.
Then/etc/rc.local blocks the following options:#amixer -c 2 cset numid=4 192 #amixer -c 2 cset numid=2 4,4 #amixer -c 2 cset numid=13 6 #amixer -c 2 cset numid=19 28 #amixer -c 2 cset numid=20 6
-
RE: 6.1 Kernel GPU firmware update
@nathan
Upgrade the Mesa version according to the following instructions, and then copy the Mali bin file to the corresponding path to enable Panthor.sudo add-apt-repository ppa:oibaf/graphics-drivers sudo apt update sudo apt-get dist-upgrade
-
RE: armbian
@mainbord
At present, the mainline kernel EDP interface is not supported. The CM5-LAPTOP configuration has been submitted for mainline review and should be released soon. -
RE: GenBook-RK3588 Crowdfunding projects
@mez62
好的,抽空弄一个。其实教给大家方法可能会更好,回头写个帖子,就以archlinux作为对象一步一步制作镜像。