diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2016-08-18 18:53:48 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-08-22 15:56:28 +0200 |
commit | 289217bbc3c5c53f486ab5615a6d6196e3c12cf2 (patch) | |
tree | f9551306e700a0ba0218177f3ec417f76d1f5759 /meta-oe/recipes-kernel | |
parent | f2bec07b87b3f1118aa1d1f194d230920f1afe01 (diff) | |
download | meta-openembedded-289217bbc3c5c53f486ab5615a6d6196e3c12cf2.tar.gz |
meta-oe: fix indentation
* remove tabs which sneaked in since last cleanup
* meta-oe layers are using consistent indentation with 4 spaces, see
http://www.openembedded.org/wiki/Styleguide
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-kernel')
-rw-r--r-- | meta-oe/recipes-kernel/makedumpfile/makedumpfile_1.6.0.bb | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/meta-oe/recipes-kernel/makedumpfile/makedumpfile_1.6.0.bb b/meta-oe/recipes-kernel/makedumpfile/makedumpfile_1.6.0.bb index be859a2d4b..c9a22703aa 100644 --- a/meta-oe/recipes-kernel/makedumpfile/makedumpfile_1.6.0.bb +++ b/meta-oe/recipes-kernel/makedumpfile/makedumpfile_1.6.0.bb | |||
@@ -1,10 +1,10 @@ | |||
1 | SUMMARY = "VMcore extraction tool" | 1 | SUMMARY = "VMcore extraction tool" |
2 | DESCRIPTION = "\ | 2 | DESCRIPTION = "\ |
3 | This program is used to extract a subset of the memory available either \ | 3 | This program is used to extract a subset of the memory available either \ |
4 | via /dev/mem or /proc/vmcore (for crashdumps). It is used to get memory \ | 4 | via /dev/mem or /proc/vmcore (for crashdumps). It is used to get memory \ |
5 | images without extra uneeded information (zero pages, userspace programs, \ | 5 | images without extra uneeded information (zero pages, userspace programs, \ |
6 | etc). \ | 6 | etc). \ |
7 | " | 7 | " |
8 | HOMEPAGE = "http://makedumpfile.sourceforge.net" | 8 | HOMEPAGE = "http://makedumpfile.sourceforge.net" |
9 | 9 | ||
10 | DEPENDS = "bzip2 zlib elfutils" | 10 | DEPENDS = "bzip2 zlib elfutils" |
@@ -18,9 +18,9 @@ PACKAGES =+ "${PN}-tools" | |||
18 | FILES_${PN}-tools = "${bindir}/*.pl" | 18 | FILES_${PN}-tools = "${bindir}/*.pl" |
19 | 19 | ||
20 | SRC_URI = "\ | 20 | SRC_URI = "\ |
21 | ${SOURCEFORGE_MIRROR}/makedumpfile/${BPN}-${PV}.tar.gz \ | 21 | ${SOURCEFORGE_MIRROR}/makedumpfile/${BPN}-${PV}.tar.gz \ |
22 | file://0001-makedumpfile-replace-hardcode-CFLAGS.patch \ | 22 | file://0001-makedumpfile-replace-hardcode-CFLAGS.patch \ |
23 | " | 23 | " |
24 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | 24 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" |
25 | LICENSE = "GPLv2.0" | 25 | LICENSE = "GPLv2.0" |
26 | 26 | ||
@@ -33,21 +33,21 @@ SECTION = "base" | |||
33 | # target gcc. | 33 | # target gcc. |
34 | # | 34 | # |
35 | EXTRA_OEMAKE = "\ | 35 | EXTRA_OEMAKE = "\ |
36 | LINKTYPE=static \ | 36 | LINKTYPE=static \ |
37 | TARGET=${TARGET_ARCH} \ | 37 | TARGET=${TARGET_ARCH} \ |
38 | " | 38 | " |
39 | 39 | ||
40 | do_install () { | 40 | do_install () { |
41 | mkdir -p ${D}/usr/bin | 41 | mkdir -p ${D}/usr/bin |
42 | install -m 755 ${S}/makedumpfile ${D}/usr/bin | 42 | install -m 755 ${S}/makedumpfile ${D}/usr/bin |
43 | install -m 755 ${S}/makedumpfile-R.pl ${D}/usr/bin | 43 | install -m 755 ${S}/makedumpfile-R.pl ${D}/usr/bin |
44 | 44 | ||
45 | mkdir -p ${D}/usr/share/man/man8 | 45 | mkdir -p ${D}/usr/share/man/man8 |
46 | install -m 644 ${S}/makedumpfile.8.gz ${D}/usr/share/man/man8 | 46 | install -m 644 ${S}/makedumpfile.8.gz ${D}/usr/share/man/man8 |
47 | 47 | ||
48 | mkdir -p ${D}/usr/share/man/man5 | 48 | mkdir -p ${D}/usr/share/man/man5 |
49 | install -m 644 ${S}/makedumpfile.conf.5.gz ${D}/usr/share/man/man5 | 49 | install -m 644 ${S}/makedumpfile.conf.5.gz ${D}/usr/share/man/man5 |
50 | 50 | ||
51 | mkdir -p ${D}/etc/ | 51 | mkdir -p ${D}/etc/ |
52 | install -m 644 ${S}/makedumpfile.conf ${D}/etc/makedumpfile.conf.sample | 52 | install -m 644 ${S}/makedumpfile.conf ${D}/etc/makedumpfile.conf.sample |
53 | } | 53 | } |