aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/combined-image.sh
Commit message (Collapse)AuthorAgeFilesLines
* build: introduce $(MKHASH)Leonardo Mörlein2021-05-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this commit, it was assumed that mkhash is in the PATH. While this was fine for the normal build workflow, this led to some issues if make TOPDIR="$(pwd)" -C "$pkgdir" compile was called manually. In most of the cases, I just saw warnings like this: make: Entering directory '/home/.../package/gluon-status-page' bash: line 1: mkhash: command not found bash: line 1: mkhash: command not found bash: line 1: mkhash: command not found bash: line 1: mkhash: command not found bash: line 1: mkhash: command not found bash: line 1: mkhash: command not found bash: line 1: mkhash: command not found bash: line 1: mkhash: command not found [...] While these were only warnings and the package still compiled sucessfully, I also observed that some package even fail to build because of this. After applying this commit, the variable $(MKHASH) is introduced. This variable points to $(STAGING_DIR_HOST)/bin/mkhash, which is always the correct path. Signed-off-by: Leonardo Mörlein <me@irrelefant.net>
* scripts: make all scripts executableStijn Tintel2017-07-141-0/+0
| | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* build: use mkhash to replace various quirky md5sum/openssl callsFelix Fietkau2017-01-051-1/+1
| | | | Signed-off-by: Felix Fietkau <nbd@nbd.name>
* scripts/combined-image.sh: remove the use of mktemp to make it more portableFelix Fietkau2009-12-241-3/+5
| | | | SVN-Revision: 18920
* use mktemp instead of tempfile in combined-image.sh to make it work on OS XJo-Philipp Wich2009-09-221-2/+2
| | | | SVN-Revision: 17674
* Implement a preliminary combined image format. - add sysupgrade support for ↵Jo-Philipp Wich2009-09-221-0/+32
combined images by providing a platform.sh backend - use the mtd fis partition table rewrite facility to resize partitions on demand - generate generic combined images for the atheros target SVN-Revision: 17668