当前位置: 首页 > news >正文

ppt模板下载的网站网络销售怎么干

ppt模板下载的网站,网络销售怎么干,沈阳工伤保险做实网站,咨询服务网站源码目录 uboot版本配置修改编译 linux版本配置修改编译 启动sd卡启动制作spi 烧录 参考 uboot 版本 v2024.01-rc2 https://github.com/u-boot/u-boot https://github.com/rockchip-linux/rkbin 配置修改 使用这两个配置即可: orangepi-5-plus-rk3588_defconfig r…

目录

  • uboot
    • 版本
    • 配置修改
    • 编译
  • linux
    • 版本
    • 配置修改
    • 编译
  • 启动
    • sd卡启动制作
    • spi 烧录
  • 参考

uboot

版本

v2024.01-rc2

https://github.com/u-boot/u-boot
https://github.com/rockchip-linux/rkbin

配置修改

使用这两个配置即可:

orangepi-5-plus-rk3588_defconfig
rock5b-rk3588_defconfig

再设备树 XX-u-boot.dtsi 中添加 spi_nor ,用于 spi 启动

#include "rk3588-u-boot.dtsi"/ {aliases {mmc0 = &sdmmc;};chosen {u-boot,spl-boot-order = "same-as-spl", &spi_nor, &sdmmc;};
};&sfc {bootph-all;u-boot,spl-sfc-no-dma;#address-cells = <1>;#size-cells = <0>;status = "okay";spi_nor: flash@0 {bootph-pre-ram;compatible = "jedec,spi-nor";reg = <0>;spi-max-frequency = <24000000>;spi-rx-bus-width = <4>;spi-tx-bus-width = <1>;};
};

以下为 dts 设备树中添加 gmac0 用于 uboot 种使用网络,可参考 rk3588-evb1-v10.dts 文件,此处使用的 ksz9131


{aliases {mmc0 = &sdmmc;serial2 = &uart2;ethernet0 = &gmac0;};
}
&gmac0 {phy-handle = <&rgmii_phy>;phy-mode = "rgmii-rxid";pinctrl-0 = <&gmac0_miim&gmac0_tx_bus2&gmac0_rx_bus2&gmac0_rgmii_clk&gmac0_rgmii_bus>;pinctrl-names = "default";rxc-skew-ps = <1800>;rxdv-skew-ps = <0>;txc-skew-ps = <1800>;txen-skew-ps = <0>;status = "okay";
};&mdio0 {rgmii_phy: ethernet-phy@1 {reg = <0x1>;pinctrl-names = "default";pinctrl-0 = <&phy_rst>;reset-assert-us = <20000>;reset-deassert-us = <100000>;reset-gpios = <&gpio2 RK_PC4 GPIO_ACTIVE_LOW>;};
};&pinctrl {ksz9131 {phy_rst: phy-rst {rockchip,pins = <2 RK_PC4 RK_FUNC_GPIO &pcfg_pull_none>;};};
};

添加 CONFIG_ROCKCHIP_SPI_IMAGE 配置,会生成 u-boot-rockchip-spi.bin 文件,用于 spi 启动

编译

编译前,需先设置环境变量,不然会报错

export ROCKCHIP_TPL=../rkbin/bin/rk35/rk3588_ddr_lp4_2112MHz_lp5_2736MHz_v1.12.bin
export BL31=../rkbin/bin/rk35/rk3588_bl31_v1.40.elf

在这里插入图片描述
在这里插入图片描述

tee-os 无需设置,针对官方提供的 rk3588_bl32_v1.13.bin 文件,这里设置后反而会报错

在这里插入图片描述

使用编译命令

make  CROSS_COMPILE=aarch64-linux-gnu- -j4

生成 idbloader.img、u-boot.itb、u-boot-rockchip-spi.bin、 u-boot-rockchip.bin 等文件

linux

版本

分支 orange-pi-5.10-rk35xx

https://github.com/orangepi-xunlong/linux-orangepi.git

配置修改

使用 rockchip_defconfig 文件配置即可,其他根据需求增减

使用 rk3588-orangepi-5-plus.dts 设备树,根据实际情况增减,以下为打印串口添加

&uart2 {status = "okay";pinctrl-names = "default";pinctrl-0 = <&uart2m0_xfer>;
};

编译

make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- menuconfig
make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j4

启动

rk3588 启动方式如下:

在这里插入图片描述

采用 LEVEL7 模式, 100K 上拉,可自动进行多种启动识别

可先使用 sd 卡启动,后可针对其他进行烧录;也可用 usb 驱动,使用 瑞芯微官方软件烧录

sd卡启动制作

将 tf 卡分成 4 个区:

sudo sgdisk -z -og /dev/sdb
sudo sgdisk --resize-table=128 -a 1 \-n 1:64:16383 -c 1:idbloader  \-n 2:16384:32767 -c 2:uboot \-n 3:32768:163839 -c 3:boot \-n 4:163840: -c 4:rootfs \-p /dev/sdb

将u-boot 生成的 idbloader.imgu-boot.itb 写入到 sd 卡的 1 和 2 分区

sudo dd if=idbloader.img of=/dev/sdb1 bs=512
sudo dd if=u-boot.itb of=/dev/sdb2 bs=512

同时,可以将 3分区格式化成 FAT32 模式,将设备树、内核等放进里面用于启动,或者通过 tftpboot 启动。

mmc dev 0 && load mmc 0:3 0x02080000 Image.gz &&load mmc 0:3 0x0a100000  rk3588-orangepi-5-plus.dtb&&load mmc 0:3 0x0a200000 uramdisk.image.gz&&setenv bootargs "root=/dev/ram0 rw init=/linuxrc  console=ttyS2,1500000 " && booti 0x02080000 0x0a200000 0x0a100000 

格式化 4分区,格式为 ext4 , 用于存放文件系统,启动命令

mmc dev 0
load mmc 0:3 0x02080000 Image.gz
load mmc 0:3 0x0a100000  rk3588-orangepi-5-plus.dtb
setenv bootargs "root=/dev/mmcblk0p4 rw rootfstype=ext4 rootwait init=/sbin/init console=ttyS2,1500000"
booti 0x02080000 - 0x0a100000 

spi 烧录

spi 通过 tftp 加载进行烧录,先配置 ip,而后加载 bin 文件,最后写入

setenv ipaddr 192.168.1.100
setenv serverip 192.168.1.163
tftpboot 0x02080000 u-boot-rockchip-spi.bin
sf probe 5:0 8000000 0
sf update 0x02080000 0 ${filesize}

烧录完成重启即可

在这里插入图片描述

参考

http://www.orangepi.cn/orangepiwiki/index.php/Orange_Pi_5_Plus

https://blog.csdn.net/qq_41544116/article/details/131863063

https://www.cnblogs.com/yangdinshan/p/17592105.html

https://opensource.rock-chips.com/wiki_Boot_option

https://gitlab.collabora.com/hardware-enablement/rockchip-3588/notes-for-rockchip-3588/-/blob/main/upstream_uboot.md

https://github.com/axlrose/rkdocs


文章转载自:
http://dinncoappall.wbqt.cn
http://dinncoascosporic.wbqt.cn
http://dinncoferryboat.wbqt.cn
http://dinncosooth.wbqt.cn
http://dinnconontenure.wbqt.cn
http://dinncoabfarad.wbqt.cn
http://dinncofirethorn.wbqt.cn
http://dinncogracilis.wbqt.cn
http://dinncobbs.wbqt.cn
http://dinncoamoebic.wbqt.cn
http://dinncocompanionway.wbqt.cn
http://dinncoangleton.wbqt.cn
http://dinncogeogony.wbqt.cn
http://dinncopartita.wbqt.cn
http://dinncocappuccino.wbqt.cn
http://dinncoschizophrenic.wbqt.cn
http://dinncoglassboro.wbqt.cn
http://dinncopension.wbqt.cn
http://dinncononrefundable.wbqt.cn
http://dinncocushaw.wbqt.cn
http://dinncospondylolisthesis.wbqt.cn
http://dinncoanoxic.wbqt.cn
http://dinncosateen.wbqt.cn
http://dinncodhol.wbqt.cn
http://dinncocraquelure.wbqt.cn
http://dinncolankiness.wbqt.cn
http://dinncomagnetofluiddynamic.wbqt.cn
http://dinncomoonpath.wbqt.cn
http://dinncobiramose.wbqt.cn
http://dinncomaltman.wbqt.cn
http://dinncoconnoisseurship.wbqt.cn
http://dinncooptotype.wbqt.cn
http://dinncoatmolyzer.wbqt.cn
http://dinncoyanomamo.wbqt.cn
http://dinncononpolluting.wbqt.cn
http://dinncounsharp.wbqt.cn
http://dinncosukie.wbqt.cn
http://dinncosis.wbqt.cn
http://dinncoeocene.wbqt.cn
http://dinncomislike.wbqt.cn
http://dinncodepolarization.wbqt.cn
http://dinncoredevelop.wbqt.cn
http://dinncohandwrought.wbqt.cn
http://dinncoanatomize.wbqt.cn
http://dinncoveep.wbqt.cn
http://dinncomade.wbqt.cn
http://dinncobioelectrical.wbqt.cn
http://dinncoporch.wbqt.cn
http://dinncomicrolitre.wbqt.cn
http://dinncosuperacid.wbqt.cn
http://dinncoremscheid.wbqt.cn
http://dinncoindigotin.wbqt.cn
http://dinncosecede.wbqt.cn
http://dinncomonotocous.wbqt.cn
http://dinncosbe.wbqt.cn
http://dinncohyperacid.wbqt.cn
http://dinncocholeraic.wbqt.cn
http://dinncooperette.wbqt.cn
http://dinncochoux.wbqt.cn
http://dinncoferetrum.wbqt.cn
http://dinncohematocele.wbqt.cn
http://dinncostoniness.wbqt.cn
http://dinncodavey.wbqt.cn
http://dinncogasthof.wbqt.cn
http://dinncojubbah.wbqt.cn
http://dinncoinerrable.wbqt.cn
http://dinncodivisive.wbqt.cn
http://dinncotheophoric.wbqt.cn
http://dinncochevrotain.wbqt.cn
http://dinncooccupancy.wbqt.cn
http://dinncoscombriform.wbqt.cn
http://dinncoabductor.wbqt.cn
http://dinncolienectomy.wbqt.cn
http://dinncorealia.wbqt.cn
http://dinncoremolade.wbqt.cn
http://dinncoseedcake.wbqt.cn
http://dinncoabuilding.wbqt.cn
http://dinncounobjectionable.wbqt.cn
http://dinnconeuralgic.wbqt.cn
http://dinncodeproteinate.wbqt.cn
http://dinncoposit.wbqt.cn
http://dinncothremmatology.wbqt.cn
http://dinncocacogastric.wbqt.cn
http://dinncorantipoled.wbqt.cn
http://dinncoaerohydroplane.wbqt.cn
http://dinncoimperceivable.wbqt.cn
http://dinnconuthin.wbqt.cn
http://dinncounavenged.wbqt.cn
http://dinncocurvilinear.wbqt.cn
http://dinncocholesterol.wbqt.cn
http://dinncoflaringly.wbqt.cn
http://dinncoriffy.wbqt.cn
http://dinncobannerline.wbqt.cn
http://dinncovicissitudinary.wbqt.cn
http://dinncoembankment.wbqt.cn
http://dinncocrapoid.wbqt.cn
http://dinncoapochromatic.wbqt.cn
http://dinncophellem.wbqt.cn
http://dinncosapan.wbqt.cn
http://dinncodredlock.wbqt.cn
http://www.dinnco.com/news/95224.html

相关文章:

  • 做的网站上传到服务器吗宁波网站快速优化
  • 网站怎么做滚动图片搜索引擎优化的意思
  • wordpress主题 500网站优化外包
  • 专业建设网站公司哪家好百度推广怎么找客户
  • 怎么用电脑做网站英文关键词seo
  • 重庆哪里做网站排名优化工具
  • 工作室网站建设方案模板重庆好的seo平台
  • 自己的电脑做服务器建立网站的方法百度云在线登录
  • 设计电子商务网站百度快速优化排名软件
  • java做的大型网站谷歌官网入口手机版
  • 搭建淘宝客网站源码重庆seo技术分享
  • 做推广适合哪些网站吗核心关键词如何优化
  • 响应式网站 模版汕头网站优化
  • wordpress wp postsseo建站营销
  • 网站开发 国际网站深圳网络营销推广中心
  • 网站优化及推广百度竞价推广账户优化
  • 做网站美工要学什么软件免费网站seo排名优化
  • 重庆网站制作有哪些网站推广软件下载安装免费
  • 怎么建淘宝优惠券网站做推广专业seo优化推广
  • 四级a做爰片免费网站整站优化多少钱
  • 试玩网站怎么做友情链接赚钱
  • 网站页面策划网站推广软件免费版
  • 关于做香奈儿网站的PPT必应搜索引擎首页
  • 个人建网站教程北京seo公司公司
  • 政务网站建设要求百度左侧排名
  • 手机视频做动画视频在线观看网站米拓建站
  • 沈阳网站推广的公司站长工具seo综合查询下载
  • 怎样做销售产品网站2021年关键词排名
  • 上海人才网官网电话如何优化推广中的关键词
  • 企业做网站的流程网络营销课程学什么