diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-08 12:46:44 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-08 12:46:44 +0000 |
commit | 074a033f4e45691e7b220eab76778aba5bc9b9f6 (patch) | |
tree | 603421a7e8be8faca15a6a452b2678745e002306 /package | |
parent | 2aa90929e631b5fba153c8dd1c5252ed74052054 (diff) | |
download | master-187ad058-074a033f4e45691e7b220eab76778aba5bc9b9f6.tar.gz master-187ad058-074a033f4e45691e7b220eab76778aba5bc9b9f6.tar.bz2 master-187ad058-074a033f4e45691e7b220eab76778aba5bc9b9f6.zip |
base-files: update default url template and complete kconfig help
Change the kconfig default for the repository url template to use "%s"
instead of "%T" as well.
Also complete the kconfig help text do cover the recently introduced
manufacturer, product and hwrev options.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43872 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/image-config.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/base-files/image-config.in b/package/base-files/image-config.in index 1f0b2c86ea..193ea08930 100644 --- a/package/base-files/image-config.in +++ b/package/base-files/image-config.in @@ -170,7 +170,7 @@ if VERSIONOPT config VERSION_REPO string prompt "Release repository" - default "http://downloads.openwrt.org/snapshots/trunk/%T/packages" + default "http://downloads.openwrt.org/snapshots/trunk/%s/packages" help This is the repository address embedded in the image, it defaults to the trunk snapshot repo; the url may contain the following placeholders: @@ -185,6 +185,11 @@ if VERSIONOPT %d .. Distribution name or "openwrt", lowercase %T .. Target name %S .. Target/Subtarget name + %s .. Target/Subtarget name in dotted notation, e.g. "ar71xx" or "ar71xx.nand" + %t .. Build taint flags, e.g. "no-all busybox" + %M .. Manufacturer name or "OpenWrt" + %P .. Product name or "Generic" + %h .. Hardware revision or "v0" config VERSION_MANUFACTURER string |