Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | samsung: fix mkorigenspl for darwin | Andreas Bießmann | 2016-02-24 | 1 | -2/+2 |
| | | | | | | | Compiling the mkorigenspl tool on darwin complains about undefined ulong. Fix this by using the unified way. Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com> | ||||
* | Fix bad return value checks (detected with Coccinelle) | Thomas Huth | 2015-10-24 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | In the "Getting Started with Coccinelle - KVM edition" presentation that has been held by Julia Lawall at the KVM forum 2015 (see the slides at http://events.linuxfoundation.org/sites/events/files/slides/tutorial_kvm_0.pdf), she pointed out some bad return value checks in U-Boot that can be detected with Coccinelle by using the following config file: @@ identifier x,y; identifier f; statement S; @@ x = f(...); ( if (x < 0) S | if ( - y + x < 0) S ) This patch now fixes these issues. Signed-off-by: Thomas Huth <huth@tuxfamily.org> | ||||
* | board: samsung: refactor host programs | Masahiro Yamada | 2014-02-19 | 1 | -0/+110 |
Some Samsung boards have their own tools under board/samsung/<board>/tools/. This commit refactor more makefiles with "hostprogs-y". Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> |