- Oct 13, 2014
-
-
John Crispin authored
pts/feeds update -a" can fail rather silently for feeds using git, as the script does not pause when updating a feed fails. Instead it prints the error message and calmly continues to the next feed. It is very easy to overlook update errors with the feeds updated first, as their text scrolls rapidly away from the screen. This behaviour has not been a big problem with svn feeds, as svn update stops with a conflict message and interactively forces the user to resolve or postpone the conflict. In any case the svn error is noticed by the user. Majority of the feeds use now git, so this silent failure can affect users doing private builds in an increasing amount. Below is an example of update failing and script continuing: perus@v1404:/Openwrt/barrier$ ./scripts/feeds update -a Updating feed 'packages' from 'https://github.com/openwrt/packages.git;for-14.07' ... remote: Counting objects: 17, done. remote: Compressing objects: 100% (15/15), done. remote: Total 17 (delta 10), reused 8 (delta 1) Unpacking objects: 100% (17/17), done. From https://github.com/openwrt/packages 62031da..dc26009 for-14.07 -> origin/for-14.07 Updating 62031da..dc26009 error: Your local changes to the following files would be overwritten by merge: utils/collectd/Makefile Please, commit your changes or stash them before you can merge. Aborting failed. Updating feed 'luci' from 'http://git.openwrt.org/project/luci.git;luci-0.12' ... Already up-to-date. Create index file './feeds/luci.index' Updating feed 'routing' from 'https://github.com/openwrt-routing/packages.git;for-14.07' ... ... The script prints "failed.", but does not break the updating process. The "update_feed" function returns an error code 1, but that value is not checked in the "update" function, which continues to the next feed. Return 1 as error: https://dev.openwrt.org/browser/trunk/scripts/feeds#L547 Call to update_feed without any error monitoring: https://dev.openwrt.org/browser/trunk/scripts/feeds#L585 The included patch makes the feeds script to stop updating after failing to update a feed. The script continues to the refresh_config step despite a possible failure in updating, so the stopping action just prevents the other feeds from updating and makes the error more clearly visible. Signed-off-by:
Hannu Nyman <hannu.nyman@iki.fi> SVN-Revision: 42891
-
- Oct 08, 2014
-
-
John Crispin authored
I defined a new download method @SAVANNAH in include/download.mk and scripts/download.pl, and converted quilt and qemu to use that method. Signed-off-by:
Hannu Nyman <hannu.nyman@iki.fi> SVN-Revision: 42840
-
- Oct 05, 2014
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 42770
-
- Sep 23, 2014
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 42654
-
- Sep 18, 2014
-
-
Jo-Philipp Wich authored
Signed-off-by:
Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 42609
-
- Aug 05, 2014
-
-
Jo-Philipp Wich authored
This changeset implements a new menuconfig option to generate separate repositories for each enabled package feed instead of one monolithic one. Signed-off-by:
Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 42002
-
- Jul 20, 2014
-
-
John Crispin authored
Signed-off-by:
Marek Lindner <marek@open-mesh.com> [sven@open-mesh.com: Rebased] Signed-off-by:
Sven Eckelmann <sven@open-mesh.com> SVN-Revision: 41771
-
- Jul 04, 2014
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 41510
-
- Jun 30, 2014
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 41407
-
- Jun 29, 2014
-
-
John Crispin authored
r41359 broke support for building ubinized images which do include a kernel volume. Signed-off-by:
Daniel Golle <daniel@makrotopia.org> SVN-Revision: 41368
-
- Jun 27, 2014
-
-
Imre Kaloz authored
Signed-off-by:
Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 41359
-
- Jun 26, 2014
-
-
John Crispin authored
ubinize-image.sh previously used ${var:offset:length} substitutions which are not valid in standard shell. Replace the existing parameter matching by a case ... esac expression. Signed-off-by:
Daniel Golle <daniel@makrotopia.org> SVN-Revision: 41347
-
- Jun 12, 2014
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 41160
-
- Jun 11, 2014
-
-
John Crispin authored
Signed-off-by:
John Crispin <blogic@openwrt.org> SVN-Revision: 41122
-
John Crispin authored
This is a wrapper for the ubinize tool which integrates auto-generation of the ubinize.cfg for common volume layouts with and without a kernel volume. It supports auto-detecting the rootfs-type and decides whether or not to include a rootfs_data volume based on whether the rootfs is ubifs or not (and thus is read-only and needs rootfs_data ubifs overlay). The script allows to create layouts as found in all current ubinize{,-overlay}.cfg files using ubinize-image.sh --no-kernel root.{ubifs,squashfs} output.ubi $UBI_OPTS It also includes support for adding ubootenv and ubootenv2 volumes typically used by U-Boot for storing its environment in UBI using the "--uboot-env" parameter. See also https://gitorious.org/openwrt-oxnas/openwrt-oxnas/source/target/linux/ oxnas/image/Makefile Signed-off-by:
Daniel Golle <daniel@makrotopia.org> create mode 100755 scripts/ubinize-image.sh SVN-Revision: 41121
-
- Jun 02, 2014
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 40980
-
Felix Fietkau authored
scripts/bundle-libraries: fall back to only copying binaries if ldd is unavailable (e.g. non-linux system) Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 40967
-
- Jun 01, 2014
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 40896
-
- Mar 13, 2014
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39917
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39916
-
- Mar 10, 2014
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39862
-
- Jan 19, 2014
-
-
John Crispin authored
Signed-off-by:
Daniel Colascione <dancol@dancol.org> SVN-Revision: 39327
-
- Dec 13, 2013
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39045
-
- Nov 22, 2013
-
-
Imre Kaloz authored
Signed-off-by:
Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 38893
-
- Nov 19, 2013
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 38860
-
- Oct 28, 2013
-
-
Felix Fietkau authored
Add a wrapper around the clang gcc emulation to fix -print-file-name=<lib> Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 38560
-
- Oct 17, 2013
-
-
Steven Barth authored
SVN-Revision: 38440
-
Luka Perkov authored
Signed-off-by:
Luka Perkov <luka@openwrt.org> SVN-Revision: 38439
-
- Oct 16, 2013
-
-
Luka Perkov authored
Signed-off-by:
Luka Perkov <luka@openwrt.org> SVN-Revision: 38431
-
Luka Perkov authored
Signed-off-by:
Luka Perkov <luka@openwrt.org> SVN-Revision: 38430
-
- Oct 04, 2013
-
-
Steven Barth authored
based on a patch by Evan Hunt <each@isc.org> Signed-off-by:
Steven Barth <steven@midlink.org> SVN-Revision: 38302
-
- Sep 29, 2013
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 38259
-
- Sep 26, 2013
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 38214
-
- Sep 25, 2013
-
-
Luka Perkov authored
Following syntax should be used to enable this feature: src-git custom git://openwrt/custom-feed^SHA_COMMIT_ID Signed-off-by:
Luka Perkov <luka@openwrt.org> SVN-Revision: 38172
-
- Sep 02, 2013
-
-
Florian Fainelli authored
Users may have merge.ff set to false, which will force merge commits to be generated. The intent here is to have a fast-forward merge when possible, so let's make sure fast-forwards are enabled. Signed-off-by:
John Szakmeister <john@szakmeister.net> Signed-off-by:
Florian Fainelli <florian@openwrt.org> SVN-Revision: 37884
-
- Aug 31, 2013
-
-
Vasilis Tsiligiannis authored
Signed-off-by:
Vasilis Tsiligiannis <acinonyx@openwrt.gr> SVN-Revision: 37864
-
Vasilis Tsiligiannis authored
Signed-off-by:
Vasilis Tsiligiannis <acinonyx@openwrt.gr> SVN-Revision: 37863
-
Vasilis Tsiligiannis authored
Signed-off-by:
Vasilis Tsiligiannis <acinonyx@openwrt.gr> SVN-Revision: 37862
-
Vasilis Tsiligiannis authored
Signed-off-by:
Vasilis Tsiligiannis <acinonyx@openwrt.gr> SVN-Revision: 37861
-
Vasilis Tsiligiannis authored
Signed-off-by:
Vasilis Tsiligiannis <acinonyx@openwrt.gr> SVN-Revision: 37860
-