diff options
author | John Crispin <john@openwrt.org> | 2015-09-16 09:37:39 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-09-16 09:37:39 +0000 |
commit | 5bf8dd5e5e509cdade63d3ddbf80ae472197f555 (patch) | |
tree | 0bdbadd06648fd3f71bd9b24b0a34be5096f48c2 /package/system/opkg/Makefile | |
parent | cb632b2d3b6383fdf9e1351157e2c8f518638016 (diff) | |
download | upstream-5bf8dd5e5e509cdade63d3ddbf80ae472197f555.tar.gz upstream-5bf8dd5e5e509cdade63d3ddbf80ae472197f555.tar.bz2 upstream-5bf8dd5e5e509cdade63d3ddbf80ae472197f555.zip |
opkg: Extend 'opkg list' command to optionally display package size
'opkg list' command only displays the available packages' name, version and
description. It would be useful to also see the approximate size of the
available package.
This patch extends "opkg list" command with "--size" to optionally show also
the *.ipk size.
* Default behaviour is to list the available packages as earlier:
"name - version - description"
* with "--size" the output of is "name - version - size - description".
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
SVN-Revision: 46980
Diffstat (limited to 'package/system/opkg/Makefile')
-rw-r--r-- | package/system/opkg/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/system/opkg/Makefile b/package/system/opkg/Makefile index 7401893a8a..cb8fb74011 100644 --- a/package/system/opkg/Makefile +++ b/package/system/opkg/Makefile @@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/feeds.mk PKG_NAME:=opkg PKG_REV:=9c97d5ecd795709c8584e972bfdf3aee3a5b846d PKG_VERSION:=$(PKG_REV) -PKG_RELEASE:=9 +PKG_RELEASE:=10 PKG_SOURCE_PROTO:=git PKG_SOURCE_VERSION:=$(PKG_REV) |