Commit aa9f6a9b authored by Yegor Yefremov's avatar Yegor Yefremov Committed by Peter Korsgaard
Browse files

New package: parted



[Peter: needs largefile + wchar]
Signed-off-by: default avatarNicolas Dechesne <n-dechesne@ti.com>
Signed-off-by: default avatarYegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent ce6727f6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -202,6 +202,7 @@ source "package/mtd/Config.in"
source "package/ntfs-3g/Config.in"
source "package/open2300/Config.in"
source "package/openocd/Config.in"
source "package/parted/Config.in"
source "package/pciutils/Config.in"
source "package/picocom/Config.in"
source "package/rng-tools/Config.in"
+14 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PARTED
	bool "parted"
	depends on BR2_LARGEFILE
	depends on BR2_USE_WCHAR
	select BR2_PACKAGE_LVM2
	select BR2_PACKAGE_READLINE
	select BR2_PACKAGE_UTIL_LINUX
	help
	  parted, the GNU partition resizing program

	  http://www.gnu.org/software/parted/

comment "parted requires a toolchain with LARGEFILE+WCHAR support"
        depends on !(BR2_LARGEFILE && BR2_USE_WCHAR)
+13 −0
Original line number Diff line number Diff line
#############################################################
#
# parted
#
#############################################################

PARTED_VERSION = 3.1
PARTED_SOURCE = parted-$(PARTED_VERSION).tar.xz
PARTED_SITE = $(BR2_GNU_MIRROR)/parted
PARTED_DEPENDENCIES = readline util-linux lvm2
PARTED_INSTALL_STAGING = YES

$(eval $(call AUTOTARGETS))