summaryrefslogtreecommitdiffstats
path: root/package/util-linux/util-linux-003-fdisk-aarch64-support.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2013-03-07 12:46:37 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2013-03-09 22:09:36 +0100
commit442aa88f95d6c4a921aa3d4de91f54d50bd0cd35 (patch)
tree35ca74f79f217e1c818b91d63ebb55b984a111c2 /package/util-linux/util-linux-003-fdisk-aarch64-support.patch
parent98d7bb16a6a63e9b73b52e9519c9925e3f9685b6 (diff)
downloadbuildroot-novena-442aa88f95d6c4a921aa3d4de91f54d50bd0cd35.tar.gz
buildroot-novena-442aa88f95d6c4a921aa3d4de91f54d50bd0cd35.zip
util-linux: bump version and revamp options
Bump to latest 2.22.2 version and revamp available options. * Remove the assumed enable/disable defaults since these seem to change quite often, so do what's wise and always enable/disable things. * Switch from build "X" menu options to just X, add some help and sort. * Introduce new option to install binaries (or not) to reduce bloat for packages that just need libblkid and/or libuuid. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/util-linux/util-linux-003-fdisk-aarch64-support.patch')
-rw-r--r--package/util-linux/util-linux-003-fdisk-aarch64-support.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/package/util-linux/util-linux-003-fdisk-aarch64-support.patch b/package/util-linux/util-linux-003-fdisk-aarch64-support.patch
deleted file mode 100644
index 825e82cf3..000000000
--- a/package/util-linux/util-linux-003-fdisk-aarch64-support.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Add case for the aarch64 architecture
-
-Taken from https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/1061609
-
-Code written by Wookey.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
-Index: b/fdisk/fdiskbsdlabel.h
-===================================================================
---- a/fdisk/fdiskbsdlabel.h
-+++ b/fdisk/fdiskbsdlabel.h
-@@ -48,7 +48,8 @@
-
- #if defined (i386) || defined (__sparc__) || defined (__arm__) || \
- defined (__mips__) || defined (__s390__) || defined (__sh__) || \
-- defined(__x86_64__) || defined (__avr32__) || defined(__cris__)
-+ defined(__x86_64__) || defined (__avr32__) || defined(__cris__) || \
-+ defined(__aarch64__)
- #define BSD_LABELSECTOR 1
- #define BSD_LABELOFFSET 0
- #elif defined (__alpha__) || defined (__powerpc__) || defined (__ia64__) || defined (__hppa__)