aboutsummaryrefslogtreecommitdiff
path: root/utils/powertop
Commit message (Collapse)AuthorAge
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* powertop: add gettext-version fixupRosen Penev2022-03-31
| | | | | | I hit this locally on Fedora 35 for some reason. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* powertop: update to 2.14Rosen Penev2022-03-22
| | | | | | | | | | Upstream switched to github. Fix license information. Backport patch for ncurses 6.3. Remove other backported patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: remove uClibc++ supportRosen Penev2021-03-05
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: Run refresh on all packagesIlya Lipnitskiy2021-02-20
| | | | | | | | | The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
* powertop: fix compilation with glibcRosen Penev2020-06-18
| | | | | | It seems several libraries need to be linked. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* powertop: Do not use fstack-protector on ARCRosen Penev2019-06-04
| | | | | | | | | | | Not compatible. Instead of setting PKG_SSP, I had to do this as the powertop Makefile defines it. Use $(FPIC) instead of -fPIC to fix potential issues. Removed musl patch. Not needed anymore. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* powertop: Switch to uClibc++Rosen Penev2019-05-13
| | | | | | | | | | | Now that the uClibc++ update has been included, we can switch to it. Basic testing shows it as working. Also fixed compilation with uClibc-ng. libiconv-stub must be used as uClibc-ng does not provide those headers. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* powertop: add packageLucian Cristian2019-04-08
package for monitoring power consumption 001 and 002 patches are taken from Alpine Linux Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>