Various fixes to the tree to get coreboot-v2 to build on Solaris
- Replace $(PWD) with $(CURDIR) in Makefiles. I don't know why the Solaris version behaves differently, but CURDIR is a safe choice on gnu make (and we require gnu make already) - Use tail -1 instead of tail -n1 in a file that already relies on tail -1 support in another place - Use tail -1 as alternative to tail -n1 in another place - Use #define for ulong_t in romcc, as that name is used on Solaris - Avoid fprinting a null pointer. The standard doesn't mandate that this is a special case, and Solaris doesn't implement it that way. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4305 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -33,42 +33,42 @@ if HAVE_ACPI_TABLES
|
||||
object amdfam10_acpi.o
|
||||
makerule ssdt.c
|
||||
depends "$(TOP)/src/northbridge/amd/amdfam10/ssdt.dsl"
|
||||
action "iasl -p $(PWD)/ssdt -tc $(TOP)/src/northbridge/amd/amdfam10/ssdt.dsl"
|
||||
action "iasl -p $(CURDIR)/ssdt -tc $(TOP)/src/northbridge/amd/amdfam10/ssdt.dsl"
|
||||
action "perl -pi -e 's/AmlCode/AmlCode_ssdt/g' ssdt.hex"
|
||||
action "mv ssdt.hex ssdt.c"
|
||||
end
|
||||
object ./ssdt.o
|
||||
makerule sspr1.c
|
||||
depends "$(TOP)/src/northbridge/amd/amdfam10/sspr1.dsl"
|
||||
action "iasl -p $(PWD)/sspr1 -tc $(TOP)/src/northbridge/amd/amdfam10/sspr1.dsl"
|
||||
action "iasl -p $(CURDIR)/sspr1 -tc $(TOP)/src/northbridge/amd/amdfam10/sspr1.dsl"
|
||||
action "perl -pi -e 's/AmlCode/AmlCode_sspr1/g' sspr1.hex"
|
||||
action "mv sspr1.hex sspr1.c"
|
||||
end
|
||||
object ./sspr1.o
|
||||
makerule sspr2.c
|
||||
depends "$(TOP)/src/northbridge/amd/amdfam10/sspr2.dsl"
|
||||
action "iasl -p $(PWD)/sspr2 -tc $(TOP)/src/northbridge/amd/amdfam10/sspr2.dsl"
|
||||
action "iasl -p $(CURDIR)/sspr2 -tc $(TOP)/src/northbridge/amd/amdfam10/sspr2.dsl"
|
||||
action "perl -pi -e 's/AmlCode/AmlCode_sspr2/g' sspr2.hex"
|
||||
action "mv sspr2.hex sspr2.c"
|
||||
end
|
||||
object ./sspr2.o
|
||||
makerule sspr3.c
|
||||
depends "$(TOP)/src/northbridge/amd/amdfam10/sspr3.dsl"
|
||||
action "iasl -p $(PWD)/sspr3 -tc $(TOP)/src/northbridge/amd/amdfam10/sspr3.dsl"
|
||||
action "iasl -p $(CURDIR)/sspr3 -tc $(TOP)/src/northbridge/amd/amdfam10/sspr3.dsl"
|
||||
action "perl -pi -e 's/AmlCode/AmlCode_sspr3/g' sspr3.hex"
|
||||
action "mv sspr3.hex sspr3.c"
|
||||
end
|
||||
object ./sspr3.o
|
||||
makerule sspr4.c
|
||||
depends "$(TOP)/src/northbridge/amd/amdfam10/sspr4.dsl"
|
||||
action "iasl -p $(PWD)/sspr4 -tc $(TOP)/src/northbridge/amd/amdfam10/sspr4.dsl"
|
||||
action "iasl -p $(CURDIR)/sspr4 -tc $(TOP)/src/northbridge/amd/amdfam10/sspr4.dsl"
|
||||
action "perl -pi -e 's/AmlCode/AmlCode_sspr4/g' sspr4.hex"
|
||||
action "mv sspr4.hex sspr4.c"
|
||||
end
|
||||
object ./sspr4.o
|
||||
makerule sspr5.c
|
||||
depends "$(TOP)/src/northbridge/amd/amdfam10/sspr5.dsl"
|
||||
action "iasl -p $(PWD)/sspr5 -tc $(TOP)/src/northbridge/amd/amdfam10/sspr5.dsl"
|
||||
action "iasl -p $(CURDIR)/sspr5 -tc $(TOP)/src/northbridge/amd/amdfam10/sspr5.dsl"
|
||||
action "perl -pi -e 's/AmlCode/AmlCode_sspr5/g' sspr5.hex"
|
||||
action "mv sspr5.hex sspr5.c"
|
||||
end
|
||||
|
Reference in New Issue
Block a user