Stefan thinks they don't add value. Command used: sed -i -e '/file is part of /d' $(git grep "file is part of " |egrep ":( */\*.*\*/\$|#|;#|-- | *\* )" | cut -d: -f1 |grep -v crossgcc |grep -v gcov | grep -v /elf.h |grep -v nvramtool) The exceptions are for: - crossgcc (patch file) - gcov (imported from gcc) - elf.h (imported from GNU's libc) - nvramtool (more complicated header) The removed lines are: - fmt.Fprintln(f, "/* This file is part of the coreboot project. */") -# This file is part of a set of unofficial pre-commit hooks available -/* This file is part of coreboot */ -# This file is part of msrtool. -/* This file is part of msrtool. */ - * This file is part of ncurses, designed to be appended after curses.h.in -/* This file is part of pgtblgen. */ - * This file is part of the coreboot project. - /* This file is part of the coreboot project. */ -# This file is part of the coreboot project. -# This file is part of the coreboot project. -## This file is part of the coreboot project. --- This file is part of the coreboot project. -/* This file is part of the coreboot project */ -/* This file is part of the coreboot project. */ -;## This file is part of the coreboot project. -# This file is part of the coreboot project. It originated in the - * This file is part of the coreinfo project. -## This file is part of the coreinfo project. - * This file is part of the depthcharge project. -/* This file is part of the depthcharge project. */ -/* This file is part of the ectool project. */ - * This file is part of the GNU C Library. - * This file is part of the libpayload project. -## This file is part of the libpayload project. -/* This file is part of the Linux kernel. */ -## This file is part of the superiotool project. -/* This file is part of the superiotool project */ -/* This file is part of uio_usbdebug */ Change-Id: I82d872b3b337388c93d5f5bf704e9ee9e53ab3a9 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41194 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
		
			
				
	
	
		
			57 lines
		
	
	
		
			873 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			873 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0-only */
 | |
| 
 | |
| #include <sys/types.h>
 | |
| #include <sys/stat.h>
 | |
| #include <fcntl.h>
 | |
| #include <unistd.h>
 | |
| #include <string.h>
 | |
| #include <errno.h>
 | |
| 
 | |
| #include "msrtool.h"
 | |
| 
 | |
| /* This Darwin support requires DirectHW, which is available at
 | |
|  * https://www.coreboot.org/DirectHW
 | |
|  */
 | |
| 
 | |
| int darwin_probe(const struct sysdef *system)
 | |
| {
 | |
| #ifdef __DARWIN__
 | |
| 	return iopl(3) == 0;
 | |
| #else
 | |
| 	return 0;
 | |
| #endif
 | |
| }
 | |
| 
 | |
| int darwin_open(uint8_t cpu, enum SysModes mode)
 | |
| {
 | |
| #ifdef __DARWIN__
 | |
| 	if (cpu > 0) {
 | |
| 		fprintf(stderr, "%s: only core 0 is supported on Mac OS X right now.\n", __func__);
 | |
| 		return 0;
 | |
| 	}
 | |
| 	return 1;
 | |
| #else
 | |
| 	return 0;
 | |
| #endif
 | |
| }
 | |
| 
 | |
| int darwin_close(uint8_t cpu)
 | |
| {
 | |
| 	return 1;
 | |
| }
 | |
| 
 | |
| int darwin_rdmsr(uint8_t cpu, uint32_t addr, struct msr *val)
 | |
| {
 | |
| #ifdef __DARWIN__
 | |
| 	msr_t msr;
 | |
| 
 | |
| 	msr = rdmsr(addr);
 | |
| 
 | |
| 	val->hi = msr.lo;
 | |
| 	val->lo = msr.hi;
 | |
| 	return 1;
 | |
| #else
 | |
| 	return 0;
 | |
| #endif
 | |
| }
 |