Jump to U-Boot directly from Windows CE running on a Handy Terminal PM251.(similar to BrainLILO)
- Get cegcc and unzip it
- Copy the directory
cegcc
into/opt
- Run
make
with thePREFIX
specified
Equivalent shell snippet:
wget -O cegcc.zip https://github.com/brain-hackers/cegcc-build/releases/download/2022-04-11-133546/cegcc-2022-04-11-133546.zip
unzip -q cegcc.zip
mkdir -p /opt # it may need sudo
cp -r cegcc /opt/ # it may need sudo
make PREFIX=/opt/cegcc
- Create a directory named
BrainLILO
- Copy dlls and the exe into it
- Create
LOADER
directory in the SD card's root directory and copyu-boot.bin
into it
Equivalent shell snippet:
mkdir BrainLILO
cp *.dll BrainLILO/
cp BrainLILO.exe BrainLILO/