mntmn / interim

The Interim Operating System
1.24k stars 56 forks source link

rpi2-build.sh missing libuspi compilation step #6

Closed tidux closed 8 years ago

tidux commented 8 years ago

Adding these lines before $COMPILE -o build/interim-arm.elf fixes the script.

THISDIR=$(pwd)
cd devices/rpi2/uspi/lib
make clean && make
cd ${THISDIR}
mntmn commented 8 years ago

Thanks, I integrated this just now.

wasamasa commented 7 years ago

You'll probably want pushd and popd instead.