blob: 28ee21adb9127185205103639c46d1a34a00a2a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
From 4e7d727edf1939904bc516d569ceef9e295f454c Mon Sep 17 00:00:00 2001
From: Paul Kocialkowski <contact@paulk.fr>
Date: Mon, 3 Aug 2015 14:49:34 +0200
Subject: [PATCH 2/7] Coreboot image integration removal
There is no need to integrate the built depthcharge binary inside a coreboot
image right after building it, coreboot will handle this on its own.
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
---
src/Makefile.inc | 6 ------
1 file changed, 6 deletions(-)
diff --git a/src/Makefile.inc b/src/Makefile.inc
index a73785b..564dd13 100644
--- a/src/Makefile.inc
+++ b/src/Makefile.inc
@@ -77,12 +77,6 @@ $(eval $(call declare_bin,$1,$2 $$$$(VB_LIB),$3))
$1.payload: $1.elf
@printf " PAYLOAD $$(subst $$(obj)/,,$$@)\n"
- $$(Q)-rm -f $1.rom $1.bb
- $$(Q)dd if=/dev/zero of=$1.bb bs=512 count=1
- $$(Q)cbfstool $1.rom create -m $$(ARCH) -s 1024K -B $1.bb
- $$(Q)cbfstool $1.rom add-payload -f $$< -n dc.elf -c lzma
- $$(Q)cbfstool $1.rom extract -n dc.elf -f $$@
- $$(Q)rm -f $1.rom $1.bb
$(notdir $1)_unified: $1.bin $1.payload
PHONY += $(notdir $1)_unified
--
1.9.1
|