aboutsummaryrefslogtreecommitdiff
path: root/utils/gptfdisk
Commit message (Collapse)AuthorAge
* Revert "gptfdisk: fix some warnings treated as errors"Tianling Shen2023-05-17
| | | | | | | | The bug was fixed in 1.0.9, so remove this hack. This reverts commit 5899a16f4ba70689055f7276e84aa96adce14373. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* gptfdisk: Update to 1.0.9Tianling Shen2023-05-17
| | | | | | Backported an upstream commit to fix build with musl 1.2.4. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* 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>
* treewide: refactor to use PKG_BUILD_FLAGS:=ltoAndre Heider2023-04-08
| | | | | | | | | | See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS" on the main repository. Note: Some packages only added `-flto` to CFLAGS and not LDFLAGS. This fixes it and properly enables LTO. Signed-off-by: Andre Heider <a.heider@gmail.com>
* treewide: refactor to use PKG_BUILD_FLAGS:=gc-sectionsAndre Heider2023-04-08
| | | | | | | | | | | | See commit da370098 "treewide: add support for "gc-sections" in PKG_BUILD_FLAGS" on the main repository. Note: This only touches packages which use all three parts (-ffunction-sections, -fdata-sections and -Wl,--gc-sections) enabled by this build flag. Some packages only use a subset, and these are left unchanged for now. Signed-off-by: Andre Heider <a.heider@gmail.com>
* gptfdisk: fix some warnings treated as errorsOskari Rauta2022-03-03
| | | | | | fixes error: format not a string literal and no format arguments [-Werror=format-security] during compile Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* gptfdisk: remove myself from maintainerAlif M. Ahmad2021-12-17
| | | | | | | Returning package maintainership to OpenWrt developers. Feel free to adopt this package. Signed-off-by: Alif M. Ahmad <alive4ever@live.com>
* gptfdisk: update to 1.0.8Rosen Penev2021-07-21
| | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gptfdisk: update to 1.0.6Rosen Penev2021-01-17
| | | | | | | | Remove all uclibcxx support. It's buggy and fairly dead upstream. Remove libcxx linker hack attributed to glibc. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gptfdisk: update to 1.0.5Rosen Penev2020-02-27
| | | | | | Removed upstreamed patches. Refresh remaining one. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gptfdisk: Switch to using uClibc++Rosen Penev2019-10-12
| | | | | | | | | | | | Added patches sent upstream to fix usage with uClibc++. Cleaned up license information. Added several size optimizations. Several other Makefile cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gptfdisk: Update to 1.0.4Rosen Penev2018-07-08
| | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gptfdisk: add a new packageAlif M. Ahmad2018-06-18
| | | | | | | | | gptfdisk is a gpt-aware disk partitioning tool. It can be used to convert mbr partitioned disk to gpt and vice versa. It supports reading GPT, MBR, and BSD disklabels. Signed-off-by: Alif M. Ahmad <alive4ever@live.com>
* utils/gptfdisk: Remove from treeDaniel Engberg2017-08-07
| | | | | | | | linux-utils (fdisk) provides the functionality I need and I have no interest in maintaining this package as it more or less overlaps the functionality of the previously mentioned alternative. Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* gdisk/sgdisk/cgdisk: capitalized submenu name (disc -> Disc)Alberto Bursi2016-11-02
| | | | | Part of a wider housekeeping effort on the packages repository. Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
* gdisk: enabled more utils and changed package nameAlberto Bursi2016-10-18
I needed also sgdisk (script-friendly) and while I was at it I added also cgdisk (uses ncurses interface), all as separate packages. re-arranged the package folder and set /usr/sbin for install folder as most tools seem to go in there and not in /sbin. Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>