From: "Vladimir 'φ-coder/phcoder' Serbinenko" <phcoder@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>,
Al Viro <viro@zeniv.linux.org.uk>,
Andrew Morton <akpm@linux-foundation.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
linux-fsdevel@vger.kernel.org
Subject: [PATCH 3/5] Rename files from nls_mac*.c to nls_mac-*.c
Date: Sat, 02 Jun 2012 03:07:27 +0200 [thread overview]
Message-ID: <4FC9674F.4010509@gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 4560 bytes --]
This is textual changes. Rename is done by
cs fs/nls; for x in nls_mac*.c; do git mv "$x" "$(echo "$x"|sed s,mac,mac-,g)"; done
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
---
fs/nls/Makefile | 22 +-
fs/nls/nls_mac-celtic.c | 602 ++++++++++++++++++++++++++++++++++++++++++
fs/nls/nls_mac-centeuro.c | 532 +++++++++++++++++++++++++++++++++++++
fs/nls/nls_mac-croatian.c | 602 ++++++++++++++++++++++++++++++++++++++++++
fs/nls/nls_mac-cyrillic.c | 497 +++++++++++++++++++++++++++++++++++
fs/nls/nls_mac-gaelic.c | 567 ++++++++++++++++++++++++++++++++++++++++
fs/nls/nls_mac-greek.c | 497 +++++++++++++++++++++++++++++++++++
fs/nls/nls_mac-iceland.c | 602 ++++++++++++++++++++++++++++++++++++++++++
fs/nls/nls_mac-inuit.c | 532 +++++++++++++++++++++++++++++++++++++
fs/nls/nls_mac-roman.c | 637 +++++++++++++++++++++++++++++++++++++++++++++
fs/nls/nls_mac-romanian.c | 602 ++++++++++++++++++++++++++++++++++++++++++
fs/nls/nls_mac-turkish.c | 602 ++++++++++++++++++++++++++++++++++++++++++
fs/nls/nls_macceltic.c | 602 ------------------------------------------
fs/nls/nls_maccenteuro.c | 532 -------------------------------------
fs/nls/nls_maccroatian.c | 602 ------------------------------------------
fs/nls/nls_maccyrillic.c | 497 -----------------------------------
fs/nls/nls_macgaelic.c | 567 ----------------------------------------
fs/nls/nls_macgreek.c | 497 -----------------------------------
fs/nls/nls_maciceland.c | 602 ------------------------------------------
fs/nls/nls_macinuit.c | 532 -------------------------------------
fs/nls/nls_macroman.c | 637 ---------------------------------------------
fs/nls/nls_macromanian.c | 602 ------------------------------------------
fs/nls/nls_macturkish.c | 602 ------------------------------------------
23 files changed, 6283 insertions(+), 6283 deletions(-)
create mode 100644 fs/nls/nls_mac-celtic.c
create mode 100644 fs/nls/nls_mac-centeuro.c
create mode 100644 fs/nls/nls_mac-croatian.c
create mode 100644 fs/nls/nls_mac-cyrillic.c
create mode 100644 fs/nls/nls_mac-gaelic.c
create mode 100644 fs/nls/nls_mac-greek.c
create mode 100644 fs/nls/nls_mac-iceland.c
create mode 100644 fs/nls/nls_mac-inuit.c
create mode 100644 fs/nls/nls_mac-roman.c
create mode 100644 fs/nls/nls_mac-romanian.c
create mode 100644 fs/nls/nls_mac-turkish.c
delete mode 100644 fs/nls/nls_macceltic.c
delete mode 100644 fs/nls/nls_maccenteuro.c
delete mode 100644 fs/nls/nls_maccroatian.c
delete mode 100644 fs/nls/nls_maccyrillic.c
delete mode 100644 fs/nls/nls_macgaelic.c
delete mode 100644 fs/nls/nls_macgreek.c
delete mode 100644 fs/nls/nls_maciceland.c
delete mode 100644 fs/nls/nls_macinuit.c
delete mode 100644 fs/nls/nls_macroman.c
delete mode 100644 fs/nls/nls_macromanian.c
delete mode 100644 fs/nls/nls_macturkish.c
diff --git a/fs/nls/Makefile b/fs/nls/Makefile
index 2dea8a1..7756060 100644
--- a/fs/nls/Makefile
+++ b/fs/nls/Makefile
@@ -42,14 +42,14 @@ obj-$(CONFIG_NLS_ISO8859_15) += nls_iso8859-15.o
obj-$(CONFIG_NLS_KOI8_R) += nls_koi8-r.o
obj-$(CONFIG_NLS_KOI8_U) += nls_koi8-u.o nls_koi8-ru.o
obj-$(CONFIG_NLS_UTF8) += nls_utf8.o
-obj-$(CONFIG_NLS_MAC_CELTIC) += nls_macceltic.o
-obj-$(CONFIG_NLS_MAC_CENTEURO) += nls_maccenteuro.o
-obj-$(CONFIG_NLS_MAC_CROATIAN) += nls_maccroatian.o
-obj-$(CONFIG_NLS_MAC_CYRILLIC) += nls_maccyrillic.o
-obj-$(CONFIG_NLS_MAC_GAELIC) += nls_macgaelic.o
-obj-$(CONFIG_NLS_MAC_GREEK) += nls_macgreek.o
-obj-$(CONFIG_NLS_MAC_ICELAND) += nls_maciceland.o
-obj-$(CONFIG_NLS_MAC_INUIT) += nls_macinuit.o
-obj-$(CONFIG_NLS_MAC_ROMANIAN) += nls_macromanian.o
-obj-$(CONFIG_NLS_MAC_ROMAN) += nls_macroman.o
-obj-$(CONFIG_NLS_MAC_TURKISH) += nls_macturkish.o
+obj-$(CONFIG_NLS_MAC_CELTIC) += nls_mac-celtic.o
+obj-$(CONFIG_NLS_MAC_CENTEURO) += nls_mac-centeuro.o
+obj-$(CONFIG_NLS_MAC_CROATIAN) += nls_mac-croatian.o
+obj-$(CONFIG_NLS_MAC_CYRILLIC) += nls_mac-cyrillic.o
+obj-$(CONFIG_NLS_MAC_GAELIC) += nls_mac-gaelic.o
+obj-$(CONFIG_NLS_MAC_GREEK) += nls_mac-greek.o
+obj-$(CONFIG_NLS_MAC_ICELAND) += nls_mac-iceland.o
+obj-$(CONFIG_NLS_MAC_INUIT) += nls_mac-inuit.o
+obj-$(CONFIG_NLS_MAC_ROMANIAN) += nls_mac-romanian.o
+obj-$(CONFIG_NLS_MAC_ROMAN) += nls_mac-roman.o
+obj-$(CONFIG_NLS_MAC_TURKISH) += nls_mac-turkish.o
--
Regards
Vladimir 'φ-coder/phcoder' Serbinenko
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 294 bytes --]
reply other threads:[~2012-06-02 1:07 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4FC9674F.4010509@gmail.com \
--to=phcoder@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=viro@zeniv.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).