Really fix iasl filename issues in our build system
There's a remaining issue that iasl cuts of "\..*$" from output paths, even if that substring contains "/" (ie. across directories) Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Acked-by: Patrick Georgi <patrick@georgi-clan.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6616 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
		
				
					committed by
					
						
						Patrick Georgi
					
				
			
			
				
	
			
			
			
						parent
						
							f9d19f2a26
						
					
				
				
					commit
					b2a4264ea5
				
			@@ -64,8 +64,8 @@ define ramstage-objs_asl_template
 | 
				
			|||||||
$(obj)/$(1).ramstage.o: src/$(1).asl $(obj)/config.h
 | 
					$(obj)/$(1).ramstage.o: src/$(1).asl $(obj)/config.h
 | 
				
			||||||
	@printf "    IASL       $$(subst $(top)/,,$$(@))\n"
 | 
						@printf "    IASL       $$(subst $(top)/,,$$(@))\n"
 | 
				
			||||||
	$(CC) -x assembler-with-cpp -E -MMD -MT $$(@) -D__ACPI__ -P -include $(abspath $(obj)/config.h) -I$(src) -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl
 | 
						$(CC) -x assembler-with-cpp -E -MMD -MT $$(@) -D__ACPI__ -P -include $(abspath $(obj)/config.h) -I$(src) -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl
 | 
				
			||||||
	cd $$(dir $$@); iasl -p $$(abspath $$(obj)/$(1)) -tc $$(notdir $$(basename $$@)).asl
 | 
						cd $$(dir $$@); iasl -p $$(notdir $$@) -tc $$(notdir $$(basename $$@)).asl
 | 
				
			||||||
	mv $$(obj)/$(1).hex $$(basename $$@).c
 | 
						mv $$(basename $$@).hex $$(basename $$@).c
 | 
				
			||||||
	$(CC) $$(CFLAGS) $$(if $$(subst dsdt,,$$(basename $$(notdir $(1)))), -DAmlCode=AmlCode_$$(basename $$(notdir $(1)))) -c -o $$@ $$(basename $$@).c
 | 
						$(CC) $$(CFLAGS) $$(if $$(subst dsdt,,$$(basename $$(notdir $(1)))), -DAmlCode=AmlCode_$$(basename $$(notdir $(1)))) -c -o $$@ $$(basename $$@).c
 | 
				
			||||||
	# keep %.o: %.c rule from catching the temporary .c file after a make clean
 | 
						# keep %.o: %.c rule from catching the temporary .c file after a make clean
 | 
				
			||||||
	mv $$(basename $$@).c $$(basename $$@).hex
 | 
						mv $$(basename $$@).c $$(basename $$@).hex
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user