Arnout Vandecappelle
0f9c0bf3d5
Globally replace $(HOST_DIR)/usr/bin with $(HOST_DIR)/bin
...
Since things are no longer installed in $(HOST_DIR)/usr, the callers
should also not refer to it.
This is a mechanical change with
git grep -l '$(HOST_DIR)/usr/bin' | xargs sed -i 's%$(HOST_DIR)/usr/bin%$(HOST_DIR)/bin%g'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2017-07-05 15:19:29 +02:00
Rahul Bedarkar
af31c309e7
boot, linux, package: use SPDX short identifier for GPLv2/GPLv2+
...
We want to use SPDX identifier for license strings as much as possible.
SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+.
This change is done by using following command.
find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g'
Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2017-04-01 15:16:38 +02:00
Gustavo Zacarias
bddb0b1c44
omap-u-boot-utils: use $(HOST_MAKE_ENV) when calling $(MAKE)
...
Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com >
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2016-10-22 15:19:24 +02:00
Yann E. MORIN
fa87e86cdf
package/omap-u-boot-utils: add hash file
...
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2016-06-19 21:54:59 +02:00
Maxime Hadjinlian
f60d4a8336
omap-u-boot-utils: bump version
...
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2014-11-01 21:48:34 +01:00
Maxime Hadjinlian
c962338070
packages: replace command install by $(INSTALL)
...
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com >
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2014-06-08 17:56:54 +02:00
Mischa Jonker
e5c392830e
packages: convert Github http:// users to the github helper
...
[Thomas: taken from Mischa original github patch.]
Signed-off-by: Mischa Jonker <mjonker@synopsys.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Tested-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-06 22:38:26 +01:00
Thomas De Schampheleire
e6ea6b7865
git packages: use full revision hash
...
There is no benefit in using the shortened git revision hash. On the
contrary: the shorter the hash, the higher the risk of having collisions
with another commit.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Acked-by: Samuel Martin <s.martin49@gmail.com >
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-11-02 16:16:54 +01:00
Spenser Gilliland
ae5be552b6
omap-u-boot-utils: fix github tarball to use commit id
...
Signed-off-by: Spenser Gilliland <spenser@gillilanding.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2013-06-06 23:07:45 +02:00
Alexandre Belloni
8dfd59d114
Normalize separator size to 80
...
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2013-06-06 22:30:24 +02:00
Luca Ceresoli
1bb2fe1a45
omap-u-boot-utils: define license
...
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2013-05-02 23:52:54 +02:00
Marek Belisko
c2d525e82d
Download packages from github in tar.gz format instead git format.
...
Verified way how to get packages from github by version or sha1
(it's enough to use first 7 characters from SHA1):
1. by sha1
FOO_VERSION = 1234567
FOO_SITE = http://github.com/user/package/tarball/branch
2. by version
FOO_VERSION = v1.0
FOO_SITE = http://github.com/user/package/tarball/$(FOO_VERSION)
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com >
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Acked-by: Samuel Martin <s.martin49@gmail.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2012-10-08 21:21:00 +02:00
Arnout Vandecappelle (Essensium/Mind)
69e64c42b7
all packages: use new host-xxx-package macros
...
This is a purely mechanical change, performed with
find package linux toolchain boot -name \*.mk | \
xargs sed -i -e 's/$(eval $(call GENTARGETS,host))/$(eval $(host-generic-package))/' \
-e 's/$(eval $(call AUTOTARGETS,host))/$(eval $(host-autotools-package))/' \
-e 's/$(eval $(call CMAKETARGETS,host))/$(eval $(host-cmake-package))/'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2012-07-17 20:18:03 +02:00
Samuel Martin
f83df20c86
omap-u-boot-utils: fix visibility in menuconfig
...
These tools only are useful for ARM (OMAP) targets.
Signed-off-by: Samuel Martin <s.martin49@gmail.com >
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2012-06-10 22:14:15 +02:00
Luca Ceresoli
761dc51bdb
omap-u-boot-utils: add new host package
...
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net >
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2012-05-19 22:31:35 +02:00