summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIoan-Adrian Ratiu <adrian.ratiu@ni.com>2015-07-21 18:00:05 +0300
committerBruce Ashfield <bruce.ashfield@windriver.com>2015-07-22 16:10:40 -0400
commit9eb70df4280bc0f181f597353b10c8564d52bc70 (patch)
tree7812939cd0a3df1d8ed39b2b92d8fbbeae8cbdaf
parent8fd56666ece0eb0b896d82c2635623b857561ece (diff)
downloadmeta-cloud-services-9eb70df4280bc0f181f597353b10c8564d52bc70.tar.gz
meta-openstack: gptfdisk: Remove recipe
A gptfdisk recipe has been added to openembedded-core by commit 8c219e making this one unecessary. Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--meta-openstack/recipes-extended/gptfdsik/files/fix-host-contamination.patch18
-rw-r--r--meta-openstack/recipes-extended/gptfdsik/gptfdisk_0.8.10.bb31
2 files changed, 0 insertions, 49 deletions
diff --git a/meta-openstack/recipes-extended/gptfdsik/files/fix-host-contamination.patch b/meta-openstack/recipes-extended/gptfdsik/files/fix-host-contamination.patch
deleted file mode 100644
index 8939cc1..0000000
--- a/meta-openstack/recipes-extended/gptfdsik/files/fix-host-contamination.patch
+++ /dev/null
@@ -1,18 +0,0 @@
1fix host contamination
2
3Make sure that the Makefile uses gcc cross
4compiler from build system, but not use
5the host gcc
6
7Signed-off-by: Vu Tran <vu.tran@windriver.com>
8
9diff --git a/Makefile b/Makefile
10index 1ae018e..4c23b45 100644
11--- a/Makefile
12+++ b/Makefile
13@@ -1,5 +1,3 @@
14-CC=gcc
15-CXX=g++
16 CFLAGS+=-D_FILE_OFFSET_BITS=64
17 #CXXFLAGS+=-Wall -D_FILE_OFFSET_BITS=64 -D USE_UTF16
18 CXXFLAGS+=-Wall -D_FILE_OFFSET_BITS=64
diff --git a/meta-openstack/recipes-extended/gptfdsik/gptfdisk_0.8.10.bb b/meta-openstack/recipes-extended/gptfdsik/gptfdisk_0.8.10.bb
deleted file mode 100644
index 67e3c14..0000000
--- a/meta-openstack/recipes-extended/gptfdsik/gptfdisk_0.8.10.bb
+++ /dev/null
@@ -1,31 +0,0 @@
1SUMMARY = "Disk partitioning tool for GUID Partition Table"
2DESCRIPTION = "\
3 GPT fdisk is a disk partitioning tool loosely modeled on \
4 Linux fdisk, but used for modifying GUID Partition Table (GPT) disks. \
5 The related FixParts utility fixes some common problems on Master Boot \
6 Record (MBR) disks."
7SECTION = "console/utils"
8LICENSE = "GPLv2"
9LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
10
11PR = "r0"
12
13SRC_URI = "http://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${PN}-${PV}.tar.gz \
14 file://fix-host-contamination.patch \
15"
16
17SRC_URI[md5sum] = "9cf4246c181c324bdbd553fe9b348373"
18SRC_URI[sha256sum] = "73e64151203ae0c347c488358e71ca582bb7fb7f0d66df86b71c42050390eb9b"
19
20do_install () {
21 install -d ${D}${sbindir}
22 install -m 755 ${S}/gdisk ${D}${sbindir}/
23 install -m 755 ${S}/cgdisk ${D}${sbindir}/
24 install -m 755 ${S}/sgdisk ${D}${sbindir}/
25 install -m 755 ${S}/fixparts ${D}${sbindir}/
26}
27
28FILES_${PN} += "${sbindir}/* \
29"
30
31DEPENDS += "util-linux"