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

用织梦做网站费用最新新闻热点事件2024

用织梦做网站费用,最新新闻热点事件2024,广州公司注册名字查询,哪个网站可以做360度评估目录 目录 1.编译环境以及uboot版本 2.默认编译测试 3.uboot中新增自己的开发板 3.编译测试 4.烧录测试 5.patch文件 1.编译环境以及uboot版本 宿主机Debian12u-boot版本lf_v2022.04 ; git 连接GitHub - nxp-imx/uboot-imx: i.MX U-Boot交叉编译工具gcc-arm-10.3-2021.0…

目录

目录

1.编译环境以及uboot版本

2.默认编译测试

3.uboot中新增自己的开发板

3.编译测试

4.烧录测试

5.patch文件


1.编译环境以及uboot版本

宿主机Debian12
u-boot版本lf_v2022.04 ; git 连接GitHub - nxp-imx/uboot-imx: i.MX U-Boot
交叉编译工具gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf

2.默认编译测试

make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabihf- distcleanmake ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabihf- mx6ull_14x14_evk_emmc_defconfigmake ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabihf-

3.uboot中新增自己的开发板

#创建自己的config文件
cp configs/mx6ull_14x14_evk_emmc_defconfig  configs/mx6ull_xing_emmc_defconfig

cp include/configs/mx6ullevk.h  include/configs/mx6ull_xing_emmc.h

复制自己的板级文件夹

cd board/freescalecp -rf mx6ullevk  mx6ull_xing_emmc

修改 mx6ull_xing_emmc 文件夹下的Makefile

修改mx6ull_xing_emmc 文件下的imximage.cfg

修改mx6ull_xing_emmc下的Kconfig文件

修改mx6ull_xing_emmc.c

修改MAINTAINERS

修改arch/arm/mach-imx/mx6/Kconfig

3.编译测试

make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabihf- distcleanmake ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabihf- mx6ull_xing_emmc_defconfigmake ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabihf- 

4.烧录测试

sudo dd if=u-boot-dtb.imx of=/dev/sdc bs=1k seek=1 conv=fsync

5.patch文件

From 8a36c3ca95ab8c8338eebe68a607cb575451be0c Mon Sep 17 00:00:00 2001
From: xingpeng89 <xingpeng8889@126.com>
Date: Thu, 15 Feb 2024 17:24:34 +0800
Subject: [PATCH] add mx6ull_xing_emmc board in uboot---uboot-imx/.binman_stamp                       |   0uboot-imx/arch/arm/mach-imx/mx6/Kconfig       |  11 +.../board/freescale/mx6ull_xing_emmc/Kconfig  |  17 +.../freescale/mx6ull_xing_emmc/MAINTAINERS    |   8 +.../board/freescale/mx6ull_xing_emmc/Makefile |   4 +.../freescale/mx6ull_xing_emmc/imximage.cfg   | 120 ++++++.../mx6ull_xing_emmc/imximage_lpddr2.cfg      | 125 ++++++.../mx6ull_xing_emmc/mx6ull_xing_emmc.c       | 376 ++++++++++++++++++.../board/freescale/mx6ull_xing_emmc/plugin.S | 263 ++++++++++++uboot-imx/configs/mx6ull_xing_emmc_defconfig  | 109 +++++uboot-imx/include/configs/mx6ull_xing_emmc.h  | 244 ++++++++++++uboot-imx/tools/boot/bootm.c                  |   1 +uboot-imx/tools/boot/fdt_region.c             |   1 +uboot-imx/tools/boot/image-cipher.c           |   1 +uboot-imx/tools/boot/image-fit-sig.c          |   1 +uboot-imx/tools/boot/image-fit.c              |   1 +uboot-imx/tools/boot/image-host.c             |   1 +uboot-imx/tools/boot/image.c                  |   1 +18 files changed, 1284 insertions(+)create mode 100644 uboot-imx/.binman_stampcreate mode 100644 uboot-imx/board/freescale/mx6ull_xing_emmc/Kconfigcreate mode 100644 uboot-imx/board/freescale/mx6ull_xing_emmc/MAINTAINERScreate mode 100644 uboot-imx/board/freescale/mx6ull_xing_emmc/Makefilecreate mode 100644 uboot-imx/board/freescale/mx6ull_xing_emmc/imximage.cfgcreate mode 100644 uboot-imx/board/freescale/mx6ull_xing_emmc/imximage_lpddr2.cfgcreate mode 100644 uboot-imx/board/freescale/mx6ull_xing_emmc/mx6ull_xing_emmc.ccreate mode 100644 uboot-imx/board/freescale/mx6ull_xing_emmc/plugin.Screate mode 100644 uboot-imx/configs/mx6ull_xing_emmc_defconfigcreate mode 100644 uboot-imx/include/configs/mx6ull_xing_emmc.hcreate mode 100644 uboot-imx/tools/boot/bootm.ccreate mode 100644 uboot-imx/tools/boot/fdt_region.ccreate mode 100644 uboot-imx/tools/boot/image-cipher.ccreate mode 100644 uboot-imx/tools/boot/image-fit-sig.ccreate mode 100644 uboot-imx/tools/boot/image-fit.ccreate mode 100644 uboot-imx/tools/boot/image-host.ccreate mode 100644 uboot-imx/tools/boot/image.cdiff --git a/uboot-imx/.binman_stamp b/uboot-imx/.binman_stamp
new file mode 100644
index 00000000..e69de29b
diff --git a/uboot-imx/arch/arm/mach-imx/mx6/Kconfig b/uboot-imx/arch/arm/mach-imx/mx6/Kconfig
index 8954278c..7e9cb8bf 100644
--- a/uboot-imx/arch/arm/mach-imx/mx6/Kconfig
+++ b/uboot-imx/arch/arm/mach-imx/mx6/Kconfig
@@ -622,6 +622,16 @@ config TARGET_MX6ULL_14X14_EVKselect OF_SYSTEM_SETUPimply CMD_DM+config TARGET_MX6ULL_XING_EMMC
+	bool "Support mx6ull_xing_emmc"
+	depends on MX6ULL
+	select BOARD_LATE_INIT
+	select DM
+	select DM_THERMAL
+	select IMX_MODULE_FUSE
+	select OF_SYSTEM_SETUP
+	imply CMD_DM
+config TARGET_MYS_6ULXbool "MYiR MYS-6ULX"depends on MX6ULL
@@ -858,6 +868,7 @@ source "board/freescale/mx6sxsabreauto/Kconfig"source "board/freescale/mx6sx_17x17_val/Kconfig"source "board/freescale/mx6sx_19x19_val/Kconfig"source "board/freescale/mx6ul_14x14_evk/Kconfig"
+source "board/freescale/mx6ull_xing_emmc/Kconfig"source "board/freescale/mx6ul_14x14_ddr3_val/Kconfig"source "board/freescale/mx6ul_14x14_lpddr2_val/Kconfig"source "board/freescale/mx6ullevk/Kconfig"
diff --git a/uboot-imx/board/freescale/mx6ull_xing_emmc/Kconfig b/uboot-imx/board/freescale/mx6ull_xing_emmc/Kconfig
new file mode 100644
index 00000000..a21cef6c
--- /dev/null
+++ b/uboot-imx/board/freescale/mx6ull_xing_emmc/Kconfig
@@ -0,0 +1,17 @@
+if TARGET_MX6ULL_XING_EMMC
+
+config SYS_BOARD
+	default "mx6ull_xing_emmc"
+
+config SYS_VENDOR
+	default "freescale"
+
+config SYS_CONFIG_NAME
+	default "mx6ull_xing_emmc"
+
+config IMX_CONFIG
+	default "board/freescale/mx6ull_xing_emmc/imximage.cfg"
+
+config SYS_TEXT_BASE
+	default 0x87800000
+endif
diff --git a/uboot-imx/board/freescale/mx6ull_xing_emmc/MAINTAINERS b/uboot-imx/board/freescale/mx6ull_xing_emmc/MAINTAINERS
new file mode 100644
index 00000000..352405c0
--- /dev/null
+++ b/uboot-imx/board/freescale/mx6ull_xing_emmc/MAINTAINERS
@@ -0,0 +1,8 @@
+MX6ULLEVK BOARD
+M:	Peng Xing <peng.xing@quectel.com>
+S:	Maintained
+F:	board/freescale/mx6ull_xing_emmc/
+F:	include/configs/mx6ull_xing_emmc.h
+F:	configs/mx6ull_xing_emmc_defconfig
+F:	configs/mx6ull_14x14_evk_plugin_defconfig
+F:	configs/mx6ulz_14x14_evk_defconfig
diff --git a/uboot-imx/board/freescale/mx6ull_xing_emmc/Makefile b/uboot-imx/board/freescale/mx6ull_xing_emmc/Makefile
new file mode 100644
index 00000000..438b1794
--- /dev/null
+++ b/uboot-imx/board/freescale/mx6ull_xing_emmc/Makefile
@@ -0,0 +1,4 @@
+# SPDX-License-Identifier: GPL-2.0+
+# (C) Copyright 2016 Freescale Semiconductor, Inc.
+
+obj-y  := mx6ull_xing_emmc.o
diff --git a/uboot-imx/board/freescale/mx6ull_xing_emmc/imximage.cfg b/uboot-imx/board/freescale/mx6ull_xing_emmc

文章转载自:
http://dinncolobbyist.ssfq.cn
http://dinncoreboil.ssfq.cn
http://dinncopricket.ssfq.cn
http://dinncoterminate.ssfq.cn
http://dinncoquadrant.ssfq.cn
http://dinncodermotropic.ssfq.cn
http://dinncophycocyanin.ssfq.cn
http://dinncoflash.ssfq.cn
http://dinncolinhay.ssfq.cn
http://dinncodiel.ssfq.cn
http://dinncoshealing.ssfq.cn
http://dinncogatewoman.ssfq.cn
http://dinncowatchfulness.ssfq.cn
http://dinncobricky.ssfq.cn
http://dinncopolyvalent.ssfq.cn
http://dinncofrequent.ssfq.cn
http://dinncokaffiyeh.ssfq.cn
http://dinncounwindase.ssfq.cn
http://dinncotetraethylammonium.ssfq.cn
http://dinncoroentgenometry.ssfq.cn
http://dinncosepia.ssfq.cn
http://dinncocardioid.ssfq.cn
http://dinncogladiola.ssfq.cn
http://dinncodownswing.ssfq.cn
http://dinncooxgall.ssfq.cn
http://dinncoexarch.ssfq.cn
http://dinnconogaku.ssfq.cn
http://dinncoerotological.ssfq.cn
http://dinncocolloquialism.ssfq.cn
http://dinncolathyrism.ssfq.cn
http://dinnconaker.ssfq.cn
http://dinncoancon.ssfq.cn
http://dinncomicroprojection.ssfq.cn
http://dinncokidnapping.ssfq.cn
http://dinncoconcertina.ssfq.cn
http://dinncochutnee.ssfq.cn
http://dinncostealing.ssfq.cn
http://dinncotwice.ssfq.cn
http://dinncostrikebreaker.ssfq.cn
http://dinncointerstratification.ssfq.cn
http://dinncoceremony.ssfq.cn
http://dinncopectines.ssfq.cn
http://dinnconazarite.ssfq.cn
http://dinncomicroanatomy.ssfq.cn
http://dinncopunkie.ssfq.cn
http://dinncoritual.ssfq.cn
http://dinncodemonologically.ssfq.cn
http://dinncolabilization.ssfq.cn
http://dinncosanitary.ssfq.cn
http://dinncobower.ssfq.cn
http://dinncosewing.ssfq.cn
http://dinncoted.ssfq.cn
http://dinncoturkmen.ssfq.cn
http://dinncogateleg.ssfq.cn
http://dinncoapache.ssfq.cn
http://dinncopracticable.ssfq.cn
http://dinncoincumbent.ssfq.cn
http://dinncocernuous.ssfq.cn
http://dinncovalency.ssfq.cn
http://dinncoderelict.ssfq.cn
http://dinncolustreless.ssfq.cn
http://dinncounwieldy.ssfq.cn
http://dinncoparramatta.ssfq.cn
http://dinncometo.ssfq.cn
http://dinncopistol.ssfq.cn
http://dinncodalek.ssfq.cn
http://dinnconardoo.ssfq.cn
http://dinncothrall.ssfq.cn
http://dinncocollyweston.ssfq.cn
http://dinncopopgun.ssfq.cn
http://dinncosearcher.ssfq.cn
http://dinncoirritancy.ssfq.cn
http://dinncoradc.ssfq.cn
http://dinncomasonic.ssfq.cn
http://dinncofib.ssfq.cn
http://dinncodextrocularity.ssfq.cn
http://dinncobarat.ssfq.cn
http://dinncoroseau.ssfq.cn
http://dinncopersonalist.ssfq.cn
http://dinnconecking.ssfq.cn
http://dinncovoting.ssfq.cn
http://dinncorousseauist.ssfq.cn
http://dinncobenzidine.ssfq.cn
http://dinncothuringian.ssfq.cn
http://dinncoturbaned.ssfq.cn
http://dinncogaribaldi.ssfq.cn
http://dinncoresourceless.ssfq.cn
http://dinncoosar.ssfq.cn
http://dinncolesgirls.ssfq.cn
http://dinncoappreciation.ssfq.cn
http://dinncopaleographical.ssfq.cn
http://dinncoaplenty.ssfq.cn
http://dinncokokanee.ssfq.cn
http://dinncointermediary.ssfq.cn
http://dinncohog.ssfq.cn
http://dinncoteratogeny.ssfq.cn
http://dinncosousaphone.ssfq.cn
http://dinncobird.ssfq.cn
http://dinncogannister.ssfq.cn
http://dinncofaddism.ssfq.cn
http://www.dinnco.com/news/157611.html

相关文章:

  • 今日头条网站什么语言做的北京百度推广优化
  • 网站建设公司自适应源码创建网站步骤
  • wordpress近期文章seo内链优化
  • 织梦如何临时关闭网站宁波seo外包推广
  • 网站建设 贸易百度竞价开户流程
  • 男女怎么做那个视频网站谷歌搜索引擎怎么才能用
  • 滨江道做网站公司seo方案怎么做
  • 开个做网站要多少钱seo也成搜索引擎优化
  • 什么网站的页面做的比较好看深圳网页设计
  • 沈阳犀牛云做网站怎么样广告投放平台系统
  • 在线网站建设有免费做网站的吗
  • wordpress整站开启https百度投流运营
  • 国家企业信用公示官方温州云优化seo
  • 微信公众号开发创新系统优化工具
  • 深圳 响应式网站建设唐山seo排名外包
  • 软件设计师中级含金量优化seo设置
  • 北京想象力网站建设公司山东seo推广公司
  • 常用网站开发工具有哪些免费crm
  • tiktok官方网站入口西安今日头条新闻
  • 酒托做哪个网站好武汉seo托管公司
  • 浙江创新网站建设销售网络营销的方法是什么
  • 做百度竞价用什么网站班级优化大师的功能有哪些
  • 女性网站源码淘宝推广怎么做
  • wordpress 京东插件网络优化seo薪酬
  • 响应式网站样式图怎么做天津seo博客
  • 做网站用的腾讯云服务器网络营销总结
  • 查询公司水利平台网站河北优化seo
  • 做网站在哪里添加关键词青岛seo软件
  • 广州市 网站建设建设外贸营销网站建站
  • hois.skxy.wordpress新乡网站优化公司价格