aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/patches-2.6.24/904-ls_time_locale.patch
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-04-24 14:35:19 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-04-24 14:35:19 +0000
commitc2bf14deb99602780a71f9290d0936d143fb1a38 (patch)
treedeb8ec5eee67437f439ee16bfe7cd1083d3c87a2 /target/linux/generic-2.6/patches-2.6.24/904-ls_time_locale.patch
parent2524718a9abe881afd27717b033f330fd41274d5 (diff)
downloadupstream-c2bf14deb99602780a71f9290d0936d143fb1a38.tar.gz
upstream-c2bf14deb99602780a71f9290d0936d143fb1a38.tar.bz2
upstream-c2bf14deb99602780a71f9290d0936d143fb1a38.zip
remove 2.6.24, no target is relying on it
SVN-Revision: 15388
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.24/904-ls_time_locale.patch')
-rw-r--r--target/linux/generic-2.6/patches-2.6.24/904-ls_time_locale.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.24/904-ls_time_locale.patch b/target/linux/generic-2.6/patches-2.6.24/904-ls_time_locale.patch
deleted file mode 100644
index 8fc9381a69..0000000000
--- a/target/linux/generic-2.6/patches-2.6.24/904-ls_time_locale.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/scripts/gen_initramfs_list.sh
-+++ b/scripts/gen_initramfs_list.sh
-@@ -125,7 +125,7 @@ parse() {
- str="${ftype} ${name} ${location} ${str}"
- ;;
- "nod")
-- local dev=`LC_ALL=C ls -l "${location}"`
-+ local dev=`LC_ALL=C ls -l --time-style=locale "${location}"`
- local maj=`field 5 ${dev}`
- local min=`field 6 ${dev}`
- maj=${maj%,}
-@@ -135,7 +135,7 @@ parse() {
- str="${ftype} ${name} ${str} ${dev} ${maj} ${min}"
- ;;
- "slink")
-- local target=`field 11 $(LC_ALL=C ls -l "${location}")`
-+ local target=`field 11 $(LC_ALL=C ls -l --time-style=locale "${location}")`
- str="${ftype} ${name} ${target} ${str}"
- ;;
- *)