Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Reform
reform-boundary-uboot
Commits
2d1506ff
Commit
2d1506ff
authored
6 years ago
by
Gary Bisson
Committed by
Troy Kisky
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
boundary: bootscript-ubuntu.txt: add i.MX8MQ support
Signed-off-by:
Gary Bisson
<
gary.bisson@boundarydevices.com
>
parent
13cc4273
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
board/boundary/bootscripts/bootscript-ubuntu.txt
+20
-38
20 additions, 38 deletions
board/boundary/bootscripts/bootscript-ubuntu.txt
with
20 additions
and
38 deletions
board/boundary/bootscripts/bootscript-ubuntu.txt
+
20
−
38
View file @
2d1506ff
...
...
@@ -2,6 +2,8 @@ setenv bootargs ''
setenv initrd_high 0xffffffff
m4=''
kernelimage=vmlinuz
bootcommand=bootz
a_base=0x10000000
if itest.s x51 == "x${imx_cpu}" ; then
a_base=0x90000000
...
...
@@ -9,10 +11,14 @@ elif itest.s x53 == "x${imx_cpu}"; then
a_base=0x70000000
elif itest.s x6SX == "x${imx_cpu}" || itest.s x7D == "x${imx_cpu}"; then
a_base=0x80000000
if itest.s "x1" == "x$m4enabled" ; then
run m4boot;
m4='-m4';
fi
elif itest.s x8MQ == "x${imx_cpu}"; then
a_base=0x40000000
kernelimage=vmlinux
bootcommand=booti
fi
if itest.s "x1" == "x$m4enabled" ; then
run m4boot;
m4='-m4';
fi
setexpr a_script ${a_base} + 0x00800000
...
...
@@ -39,6 +45,8 @@ if itest.s "x" == "x${fdt_file}" ; then
fdt_file=imx6sx-${board}${m4}.dtb;
elif itest.s x7D == "x${imx_cpu}" ; then
fdt_file=imx7d-${board}${m4}.dtb;
elif itest.s x8MQ == "x${imx_cpu}" ; then
fdt_file=imx8mq-${board}${m4}.dtb;
elif itest.s x51 == "x${imx_cpu}" ; then
fdt_file=imx51-${board}${m4}.dtb;
elif itest.s x53 == "x${imx_cpu}" ; then
...
...
@@ -69,46 +77,31 @@ else
exit;
fi
cmd_xxx_present=
fdt resize
if itest.s "x" != "x${cmd_custom}" ; then
run cmd_custom
cmd_xxx_present=1;
fi
if itest.s "x" != "x${cmd_hdmi}" ; then
run cmd_hdmi
cmd_xxx_present=1;
if itest.s x == x${allow_noncea} ; then
setenv bootargs ${bootargs} mxc_hdmi.only_cea=1;
echo "only CEA modes allowed on HDMI port";
else
if itest.s x != x${allow_noncea} ; then
setenv bootargs ${bootargs} mxc_hdmi.only_cea=0;
echo "non-CEA modes allowed on HDMI, audio may be affected";
fi
fi
if itest.s "x" != "x${cmd_lcd}" ; then
run cmd_lcd
cmd_xxx_present=1;
fi
if itest.s "x" != "x${cmd_lcd2}" ; then
run cmd_lcd2
cmd_xxx_present=1;
fi
if itest.s "x" != "x${cmd_lvds}" ; then
run cmd_lvds
cmd_xxx_present=1;
fi
if itest.s "x" != "x${cmd_lvds2}" ; then
run cmd_lvds2
cmd_xxx_present=1;
fi
if itest.s "x" == "x${cmd_xxx_present}" ; then
echo "!!!!!!!!!!!!!!!!"
echo "warning: your u-boot may be outdated, please upgrade"
echo "!!!!!!!!!!!!!!!!"
if itest.s "x" != "x${cmd_mipi}" ; then
run cmd_mipi
fi
setexpr b0 ${distro_bootpart} % 0x0a;
...
...
@@ -134,7 +127,7 @@ if itest.s "x" != "x${disable_giga}" ; then
fi
if itest.s "x" != "x${wlmac}" ; then
setenv bootargs ${bootargs}
wlan.mac=${wlmac}
wlcore.mac=${wlmac}
setenv bootargs ${bootargs} wlcore.mac=${wlmac}
fi
if itest.s "x" != "x${bd_addr}" ; then
...
...
@@ -145,7 +138,6 @@ if itest.s "x" != "x${gpumem}" ; then
setenv bootargs ${bootargs} galcore.contiguousSize=${gpumem}
fi
if itest.s "no" != "${dosplash}" ; then
if itest.s "x" == "x${loglevel}" ; then
loglevel=4
...
...
@@ -182,16 +174,6 @@ if itest.s "x" != "x${show_env}" ; then
printenv
fi
if kbd ; then
if itest.s "xv" == "x${keybd}" ; then
load ${devtype} ${devnum}:${distro_bootpart} ${a_zImage} ${prefix}uImage-recovery &&
load ${devtype} ${devnum}:${distro_bootpart} ${a_ramdisk} ${prefix}uramdisk-recovery.img &&
bootm ${a_zImage} ${a_ramdisk};
echo "--- error launching recovery!"
exit;
fi
fi
echo "----------- trying to load /initrd.img";
if load ${devtype} ${devnum}:${distro_bootpart} ${a_initrd} /initrd.img ; then
haverd=1;
...
...
@@ -201,13 +183,13 @@ else
fi
if itest.s x${haverd} == x ; then
if load ${devtype} ${devnum}:${distro_bootpart} ${a_zImage} /
vmlinuz
; then
if load ${devtype} ${devnum}:${distro_bootpart} ${a_zImage} /
${kernelimage}
; then
setenv bootargs ${bootargs} rw
boot
z
${a_zImage} - ${a_fdt}
${
boot
command}
${a_zImage} - ${a_fdt}
fi
else
if load ${devtype} ${devnum}:${distro_bootpart} ${a_zImage} /
vmlinuz
; then
boot
z
${a_zImage} ${a_initrd}:${initrd_size} ${a_fdt} ;
if load ${devtype} ${devnum}:${distro_bootpart} ${a_zImage} /
${kernelimage}
; then
${
boot
command}
${a_zImage} ${a_initrd}:${initrd_size} ${a_fdt} ;
fi
fi
echo "Error loading kernel image"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment