crosfirmware.sh and extract_blobs.sh are not executable, change that. Change-Id: Ib04df580a9acd4a422aedbdc15013b2ef505459a Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: https://review.coreboot.org/15922 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Omar Pakker Reviewed-by: Patrick Georgi <pgeorgi@google.com>
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash -x
 | |
| #
 | |
| # This file is part of the coreboot project.
 | |
| #
 | |
| # Copyright (C) 2016 Joe Pillow
 | |
| #
 | |
| # This program is free software; you can redistribute it and/or modify
 | |
| # it under the terms of the GNU General Public License as published by
 | |
| # the Free Software Foundation; version 2 of the License.
 | |
| #
 | |
| # This program is distributed in the hope that it will be useful,
 | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| # GNU General Public License for more details.
 | |
| #
 | |
| 
 | |
| IMAGE=$1
 | |
| 
 | |
| if [ ! -r "$IMAGE" ]; then
 | |
|   echo "Can't find image $IMAGE."
 | |
|   exit 1
 | |
| fi
 | |
| 
 | |
| CBFSTOOL=$(which cbfstool)
 | |
| if [ $? != 0 ]; then
 | |
|   echo "Can't find cbfstool."
 | |
|   exit 1
 | |
| fi
 | |
| 
 | |
| IFDTOOL=$(which ifdtool)
 | |
| if [ $? != 0 ]; then
 | |
|   echo "Can't find ifdtool."
 | |
|   exit 1
 | |
| fi
 | |
| 
 | |
| $CBFSTOOL $IMAGE print
 | |
| 
 | |
| if [ $? -ne 0 ]; then
 | |
|   echo "Not a coreboot image: $IMAGE"
 | |
|   exit 1
 | |
| fi
 | |
| 
 | |
| PCI=$($CBFSTOOL $IMAGE print|grep pci|cut -f1 -d\ )
 | |
| MRC=$($CBFSTOOL $IMAGE print|grep mrc.bin|cut -f1 -d\ )
 | |
| 
 | |
| $CBFSTOOL $IMAGE extract -n $PCI -f $PCI
 | |
| $CBFSTOOL $IMAGE extract -n $MRC -f $MRC
 | |
| $IFDTOOL -x $IMAGE
 | |
| mv flashregion_0_flashdescriptor.bin flashdescriptor.bin
 | |
| mv flashregion_2_intel_me.bin me.bin
 | |
| rm flashregion_*.bin
 |