You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been doing some digging for a faster way to boot linux on the imx53 from NAND using the serial port. The board I'm working on has a NAND that the imx53 cannot boot from so I am booting the board by sending it a huge uboot file (300K) over a serial port at 115200. This takes a long time. The uboot then is used to boot the linux out of the NAND. whoosh looks like it might be a possible replacement for uboot. From what I understand so far, I would have to add code to whoosh to copy the kernel out of NAND into DRAM. Perhaps a few more tweaks here and there. My board is a superset of QSB - no SDCARD, and with NAND. What do you think?
The text was updated successfully, but these errors were encountered:
hello alexandrebelloni:
If i want to add some not naked function to whoosh,what can i do.
I just add the function like this:
void test(){
}
void NAKED BOOT boot{
test();
_asm volatile("nop");
}
The test() function above which is what i have added.Now it will be found that _asm volatile("nop") will not be executed.
I've been doing some digging for a faster way to boot linux on the imx53 from NAND using the serial port. The board I'm working on has a NAND that the imx53 cannot boot from so I am booting the board by sending it a huge uboot file (300K) over a serial port at 115200. This takes a long time. The uboot then is used to boot the linux out of the NAND. whoosh looks like it might be a possible replacement for uboot. From what I understand so far, I would have to add code to whoosh to copy the kernel out of NAND into DRAM. Perhaps a few more tweaks here and there. My board is a superset of QSB - no SDCARD, and with NAND. What do you think?
The text was updated successfully, but these errors were encountered: