View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0005132 | UBoot | U-Boot | public | 2021-11-24 17:39 | 2021-12-07 11:36 |
Reporter | gerbach | Assigned To | |||
Priority | high | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | fsimx6-B2021.10.1 | ||||
Target Version | fsimx6ul-B2022.04 | Fixed in Version | fsimx6ul-B2022.04 | ||
Summary | 0005132: Boards cannot boot when started with MFG tool | ||||
Description | With the imx-uboot merges the uboot sets the bootmcd environment variable automatically to "fastboot". When a saveenv is called the uboot cannot boot Linux anymore. | ||||
Forum Link | |||||
|
Git commit: 4a28a56a8a6168f36518b2ab7fb7f6af79913928 Fix bootcmd-fastboot override when booting from USB When booting from USB, e.g with MFG tool the environment variable bootcmd gets overridden with 'fastboot 0'. We need this for i.MX8, because we have to fastboot into Linux for writing the Nboot. But for i.MX6 there is no fastboot activated, so the fastboot cmd isn't known. Overriding the bootcmd here breaks the boot command. So we include this override only if fastboot is activated in the configs. For the fsimx6-B2021.10.1 Release, we use a own LinuxDownload-*-sdcard-usb.txt which resets the boocmd environment variable to default before the saveenv. |
|
Git commit: 038e06866689145f2b087636a02f4bb979ff3600 Fix fastboot for i.MX8 For i.MX8 boards currently the fastboot protocol will not start because the define FASTBOOT is not present. Correct the define to the configuration CONFIG_FASTBOOT. |