Questions tagged [u-boot]

Das U-boot is a GPL'd bootloader for embedded boards supporting multiple processor architectures.

Das U-Boot (Universal Bootloader) is an open source, primary boot loader used in embedded devices. It is available for a number of different computer architectures, including PPC, ARM, MIPS, AVR32, x86, 68k, Nios, and MicroBlaze.

1037 questions
-3
votes
1 answer

How to open a file from script which is runniing at boot time

I am running my script file in u-boot. I want to create a file and save my contents.I tried the following , cat > info.txt <<- "EOF" // opening the file echo "${mmcpart}" | tee info.txt // adding contents echo "${root_fs}" | tee -a…
1 2 3
69
70