2013-10-17 11:46:43 +02:00
|
|
|
# Description: U-Boot tools
|
2022-04-07 18:33:41 +02:00
|
|
|
# URL: https://www.denx.de/wiki/U-Boot/WebHome
|
2022-02-18 14:55:31 +01:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2022-07-23 17:22:36 +02:00
|
|
|
# Depends on: gnutls openssl swig
|
2013-10-17 11:46:43 +02:00
|
|
|
|
|
|
|
name=u-boot-tools
|
2022-10-05 12:01:28 +02:00
|
|
|
version=2022.10
|
2013-10-17 11:46:43 +02:00
|
|
|
release=1
|
2020-11-22 16:41:33 +01:00
|
|
|
source=(https://ftp.denx.de/pub/u-boot/u-boot-$version.tar.bz2)
|
2013-10-17 11:46:43 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd u-boot-$version
|
|
|
|
|
2014-06-13 09:58:42 +02:00
|
|
|
make sandbox_config
|
2020-08-12 15:35:54 +02:00
|
|
|
make tools TOOLSUBDIRS=""
|
2013-10-17 11:46:43 +02:00
|
|
|
|
2016-02-02 17:00:51 +00:00
|
|
|
install -d -m 0755 $PKG/usr/{bin,share/man/man1}
|
2013-10-17 11:46:43 +02:00
|
|
|
install -m 0755 tools/mk{,env}image $PKG/usr/bin
|
2016-02-02 17:00:51 +00:00
|
|
|
install -m 0644 doc/mkimage.1 $PKG/usr/share/man/man1
|
2021-01-28 15:21:01 +00:00
|
|
|
}
|