summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBen Warren <bwarren@qstreams.com>2006-10-26 14:38:25 -0400
committerWolfgang Denk <wd@denx.de>2006-10-26 21:15:38 +0200
commitb985b5d6e4fb88f508f7aa0f126c2e27ada2b999 (patch)
tree55cfbd3276134d957d08768915d9c751d0274643 /Makefile
parent2b2a40bebbf1822506e80e631d7253e60f0e0fe6 (diff)
downloadbarebox-b985b5d6e4fb88f508f7aa0f126c2e27ada2b999.tar.gz
barebox-b985b5d6e4fb88f508f7aa0f126c2e27ada2b999.tar.xz
Fix TSEC driver: avoid crashes if PHY is not attached
to a TSEC (e.g. a switch is connected via RMII) or if the PHY is defective/incorrectly configured. Signed-off-by: Ben Warren <bwarren@qstreams.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c871d49676..62dafc5ed9 100644
--- a/Makefile
+++ b/Makefile
@@ -330,7 +330,8 @@ endif
.PHONY : CHANGELOG
CHANGELOG:
- git log --no-merges U-Boot-1_1_5.. | unexpand -a > $@
+ git log --no-merges U-Boot-1_1_5.. | \
+ unexpand -a | sed -e 's/\s\s*$$//' > $@
#########################################################################