Hello,
I'm trying to use the ticket system in trac, but keep being rejected as
a spammer: "500 Internal Server Error (Submission rejected as potential
spam)"
Anyway, what I wanted to report is that Coreboot requires changes to
compile on BSD (in my case NetBSD). What I wanted to get committed so
far is quite trivial actually: recursive "make" calls should be changed
to "$(MAKE)", as GNU make (or "gmake") is apparently necessary to build.
The attached patch is for ADLO, but the generic build system would need
to be fixed as well.
HTH,
--
khorben
Index: util/ADLO/Makefile
===================================================================
--- util/ADLO/Makefile (revision 3359)
+++ util/ADLO/Makefile (working copy)
@@ -40,7 +40,7 @@
#-------------------------------------------------
bios:
- ( cd ${BOCHS_B} ; make )
+ ( cd ${BOCHS_B} ; $(MAKE) )
sync
#-------------------------------------------------
@@ -101,7 +101,7 @@
clean:
rm -rf *.o ${PAYLOAD}
- (cd ${BOCHS_B} ; make clean )
+ (cd ${BOCHS_B} ; $(MAKE) clean )
distclean: clean
rm -rf ${BOCHS_C}