【jetson nano】SD卡驱动挂载到nano板


【jetson nano】SD卡驱动挂载到nano板
)

前言

Jetson nano搭载四核Cortex-A57 MPCore 处理器,采用128 核 Maxwell™ GPU。支持JetPack SDK. 支持主流的AI框架和算法,例如TensorFlow, PyTorch, Caffe/Caffe2, Keras, MXNet等。
淘宝上博主购入nano板时,苦于囊中羞涩,内存只有16G,需要自备一张SD卡挂载。

一、驱动下载

下载链接:驱动下载链接

二、文件复制到设备

将tegra210-p3448-0002-p3449-0000-b00.dtb文件复制到设备上,然后复制到/boot目录下

sudo cp tegra210-p3448-0002-p3449-0000-b00.dtb /boot

三、编辑系统驱动文件

编辑/boot/extlinux/extlinux.conf配置文件

sudo gedit /boot/extlinux/extlinux.conf

将下述内容直接贴在.conf文件中

TIMEOUT 30
DEFAULT primary

MENU TITLE L4T boot options

LABEL primary
      MENU LABEL primary kernel
      LINUX /boot/Image
      INITRD /boot/initrd
      FDT /boot/tegra210-p3448-0002-p3449-0000-b00.dtb
      APPEND ${
    
    cbootargs} quiet root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyTCU0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 

# When testing a custom kernel, it is recommended that you create a backup of
# the original kernel and add a new entry to this file so that the device can
# fallback to the original kernel. To do this:
#
# 1, Make a backup of the original kernel
#      sudo cp /boot/Image /boot/Image.backup
#
# 2, Copy your custom kernel into /boot/Image
#
# 3, Uncomment below menu setting lines for the original kernel
#
# 4, Reboot

# LABEL backup
#    MENU LABEL backup kernel
#    LINUX /boot/Image.backup
#    INITRD /boot/initrd
#    APPEND ${
      
      cbootargs}

猜你喜欢

转载自blog.csdn.net/qq_52201194/article/details/125675303