This website requires JavaScript.
46 changed files with
53 additions and
46 deletions
@ -1,4 +1,4 @@
#!/bin/ bash
#!/usr/bin/env bash
#
# Copyright (C) 2007-2010 by coresystems GmbH
#
@ -1,7 +1,8 @@
#!/usr/bin/ perl -w
#!/usr/bin/ env perl
use Getopt::Long ;
use strict ;
use warnings ;
my $ NAME = $ 0 ;
my $ VERSION = '0.01' ;
@ -1,7 +1,8 @@
#!/usr/bin/ perl -w
#!/usr/bin/ env perl
use Getopt::Long ;
use strict ;
use warnings ;
my $ NAME = $ 0 ;
my $ VERSION = '0.01' ;
@ -1,4 +1,4 @@
#!/ bin/ bash
#!/ usr/bin/env bash
# This is an example that generates data files that are understood by the
# k8-interpret-extended-memory-settings.pl script. Adjust the pci ids for your
@ -1,4 +1,4 @@
#!/usr/bin/ perl -w
#!/usr/bin/ env perl
my $ NAME = $ 0 ;
my $ VERSION = '0.01' ;
@ -11,6 +11,7 @@ my $URL = "https://coreboot.org";
my $ DEBUG = 0 ;
use strict ;
use warnings ;
# Run the bkdg for k8 through pdftotext first (from the poppler package)
@ -1,4 +1,4 @@
#!/ bin/ bash
#!/ usr/bin/env bash
# This script is used to set up a ubuntu-based live image to be used
# with coreboot's board_status script. It modifies the system so that
@ -1,4 +1,4 @@
#!/ bin/ bash
#!/ usr/bin/env bash
##
## This file is part of the coreboot project.
@ -1,4 +1,4 @@
#!/usr/bin/ python
#!/usr/bin/ env python
# devicetree_convert Tool to convert a DTB to a static C file
# Copyright (C) 2018 Facebook Inc.
@ -6,7 +6,7 @@ CONFIG_FMD_GENPARSER ?= n
HOSTCC ?= $( CC)
PREFIX ?= /usr/local
BINDIR ?= $( PREFIX) /bin
INSTALL ?= /usr/bin/install
INSTALL ?= /usr/bin/env install
OBJCOPY ?= objcopy
VBOOT_SOURCE ?= $( top) /3rdparty/vboot
@ -16,7 +16,7 @@
PROGRAM = cbmem
ROOT = ../../src
CC ?= $( CROSS_COMPILE) gcc
INSTALL ?= /usr/bin/install
INSTALL ?= /usr/bin/env install
PREFIX ?= /usr/local
CFLAGS ?= -O2
CFLAGS += -Wall -Werror
@ -1,4 +1,4 @@
#!/ bin/ bash
#!/ usr/bin/env bash
#
# This file is part of the coreboot project.
#
@ -1,4 +1,4 @@
#!/ bin/bash -x
#!/ usr/bin/env bash
#
# This file is part of the coreboot project.
#
@ -14,6 +14,8 @@
# GNU General Public License for more details.
#
set -x
IMAGE = $1
if [ ! -r " $IMAGE " ] ; then
@ -17,7 +17,7 @@
CC = gcc
CFLAGS = -O2 -Wall -W
PROGRAM = ectool
INSTALL = /usr/bin/install
INSTALL = /usr/bin/env install
PREFIX = /usr/local
OS_ARCH = $( shell uname)
@ -1,4 +1,4 @@
#!/bin/ bash
#!/usr/bin/env bash
#Parse a log and get back the function names and line numbers
#Provide a log file as first argument
@ -1,4 +1,4 @@
#!/ bin/ bash
#!/ usr/bin/env bash
##
## This file is part of the coreboot project.
@ -16,7 +16,7 @@
PROGRAM = ifdtool
CC = gcc
INSTALL = /usr/bin/install
INSTALL = /usr/bin/env install
PREFIX = /usr/local
CFLAGS = -O2 -g -Wall -W -Werror -I../../src/commonlib/include
LDFLAGS =
@ -15,7 +15,7 @@
PROGRAM = intelmetool
CC ?= gcc
INSTALL ?= /usr/bin/install
INSTALL ?= /usr/bin/env install
PREFIX ?= /usr/local
CFLAGS ?= -O0 -g -Wall -W -Wno-unused-parameter -Wno-sign-compare -Wno-unused-function
LDFLAGS += -lpci -lz
@ -20,7 +20,7 @@ PROGRAM = inteltool
top ?= $( abspath ../..)
CC ?= gcc
INSTALL ?= /usr/bin/install
INSTALL ?= /usr/bin/env install
PREFIX ?= /usr/local
CFLAGS ?= -O2 -g -Wall -W
LDFLAGS += -lpci -lz
@ -1,4 +1,4 @@
#!/usr/bin/ python
#!/usr/bin/ env python
#============================================================================
#
#/** @file createxbl.py
@ -1,4 +1,4 @@
#!/usr/bin/ python
#!/usr/bin/ env python
#===============================================================================
#
# MBN TOOLS
@ -16,7 +16,7 @@
PROGRAM = k8resdump
CC = gcc
INSTALL = /usr/bin/install
INSTALL = /usr/bin/env install
PREFIX = /usr/local
#CFLAGS = -O2 -g -Wall -Werror
CFLAGS = -Os -Wall -Werror
@ -1,4 +1,4 @@
#!/bin/ bash
#!/usr/bin/env bash
#
# miniconfig - utility to minimize your coreboot config files
#
@ -1,4 +1,4 @@
#!/bin/ bash
#!/usr/bin/env bash
# test to make sure the lint tests fail
SPACE=' '
@ -1,4 +1,4 @@
#!/usr/bin/ python
#!/usr/bin/ env python
# Copyright (C) 2018 Intel Corporation.
# written by Naresh G Solanki<naresh.solanki@intel.com> and
# Maulik V Vaghela <maulik.v.vaghela@intel.com>
@ -1,4 +1,4 @@
#!/usr/bin/perl
#!/usr/bin/env perl
#
# This file is part of the coreboot project.
@ -1,4 +1,4 @@
#!/usr/bin/ python
#!/usr/bin/ env python
# me_cleaner - Tool for partial deblobbing of Intel ME/TXE firmware images
# Copyright (C) 2016-2018 Nicola Corna <nicola@corna.info>
@ -1,4 +1,4 @@
#!/usr/bin/ python
#!/usr/bin/ env python
from setuptools import setup
@ -1,4 +1,4 @@
#!/ bin/ bash
#!/ usr/bin/env bash
#
# This file is part of the coreboot project.
@ -1,4 +1,4 @@
#!/ bin/ bash
#!/ usr/bin/env bash
#
# This file is part of the coreboot project.
@ -1,4 +1,4 @@
#!/ bin/ bash
#!/ usr/bin/env bash
#
# This file is part of the coreboot project.
@ -17,7 +17,7 @@
PROGRAM = nvramtool
CC = gcc
INSTALL = /usr/bin/install
INSTALL = /usr/bin/env install
PREFIX = /usr/local
CFLAGS = -O2 -g -Wall -W -I. -DCMOS_HAL= 1
#CFLAGS = -Os -Wall
@ -16,7 +16,7 @@
CC = gcc
CFLAGS = -O2 -Wall -W -Werror
PROGRAM = pmh7tool
INSTALL = /usr/bin/install
INSTALL = /usr/bin/env install
PREFIX = /usr/local
all : $( PROGRAM )
@ -1,4 +1,4 @@
#!/bin/ bash
#!/usr/bin/env bash
# ${VERSION_NAME}: new version name
# ${COMMIT_ID}: commit id (if not master)
# ${USERNAME}: username (if not default to https)
@ -1,4 +1,4 @@
#!/bin/ bash
#!/usr/bin/env bash
#
# This file is part of the coreboot project.
#
@ -1,4 +1,4 @@
#!/usr/bin/ python3
#!/usr/bin/ env python3
# This file is part of the coreboot project.
#
# Copyright (C) 2018 Jonathan Neuschäfer
@ -1,4 +1,4 @@
#!/bin/ bash
#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0
# Manipulate options in a .config file from the command line
@ -1,4 +1,4 @@
#!/ bin/ bash
#!/ usr/bin/env bash
#
# Copyright 2015 Google Inc.
#
@ -1,4 +1,4 @@
#!/bin/ bash
#!/usr/bin/env bash
# Copyright 2016 Google Inc.
#
@ -1,4 +1,4 @@
#!/usr/bin/ perl -w
#!/usr/bin/ env perl
# (c) 2007, Joe Perches <joe@perches.com>
# created from checkpatch.pl
#
@ -11,6 +11,7 @@
# Licensed under the terms of the GNU GPL License version 2
use strict ;
use warnings ;
my $ P = $ 0 ;
my $ V = '0.26' ;
@ -1,6 +1,7 @@
#!/usr/bin/ perl -w
#!/usr/bin/ env perl
use strict ;
use warnings ;
my % map ;
@ -1,4 +1,4 @@
#!/bin/ bash
#!/usr/bin/env bash
files=`git diff --cached --name-only | grep '\.[ch]$'`
if [ -z "$files" ]; then
exit 0
@ -1,4 +1,4 @@
#!/ bin/ bash
#!/ usr/bin/env bash
#
# This file is part of the coreboot project.
#
@ -1,4 +1,4 @@
#!/bin/ bash
#!/usr/bin/env bash
# This file is part of the coreboot project.
#
@ -17,7 +17,7 @@
PROGRAM = superiotool
CC ?= gcc
INSTALL ?= /usr/bin/install
INSTALL ?= /usr/bin/env install
PREFIX ?= /usr/local
# Set the superiotool version string to the output of 'git describe'.
@ -1,4 +1,4 @@
#!/ bin/ bash
#!/ usr/bin/env bash
# Creates `./util/README.md` and `./Documentation/Util.md` of description files
# in `./util` subdirectories
@ -19,7 +19,7 @@
PROGRAM = viatool
CC ?= gcc
INSTALL ?= /usr/bin/install
INSTALL ?= /usr/bin/env install
PREFIX ?= /usr/local
CFLAGS ?= -O2 -g -Wall -W -I$( CURDIR)
LDFLAGS += -lpci -lz