7d5a772f63
This includes two separately configurable parition manipulation utilities: gdsik and sgdisk are to GPT disks what fdisk and sfdisk are in MBR land. [Peter: patch source, fix typos, fix partial build, pass correct flags] Signed-off-by: Malte Starostik <m-starostik@versanet.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
40 lines
954 B
Makefile
40 lines
954 B
Makefile
#############################################################
|
|
#
|
|
# gdisk
|
|
#
|
|
#############################################################
|
|
|
|
GDISK_VERSION = 0.6.14
|
|
GDISK_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/gptfdisk
|
|
GDISK_SOURCE = gdisk-$(GDISK_VERSION).tgz
|
|
|
|
GDISK_TARGETS_$(BR2_PACKAGE_GDISK_GDISK) += gdisk
|
|
GDISK_TARGETS_$(BR2_PACKAGE_GDISK_SGDISK) += sgdisk
|
|
|
|
ifneq ($(GDISK_TARGETS_y),)
|
|
|
|
GDISK_DEPENDENCIES += e2fsprogs
|
|
ifeq ($(BR2_PACKAGE_GDISK_SGDISK),y)
|
|
GDISK_DEPENDENCIES += popt
|
|
endif
|
|
|
|
|
|
define GDISK_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) CC="$(TARGET_CC)" CXX="$(TARGET_CXX)" \
|
|
-C $(@D) $(GDISK_TARGETS_y)
|
|
endef
|
|
|
|
define GDISK_INSTALL_TARGET_CMDS
|
|
for i in $(GDISK_TARGETS_y); do \
|
|
$(INSTALL) -D $(@D)/$$i $(TARGET_DIR)/usr/sbin/; \
|
|
done
|
|
endef
|
|
|
|
define GDISK_UNINSTALL_TARGET_CMDS
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/sbin/,$(GDISK_TARGETS_y))
|
|
endef
|
|
|
|
endif
|
|
|
|
$(eval $(call GENTARGETS,package,gdisk))
|