summaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorThomas Bächler <thomas@archlinux.org>2006-08-28 00:21:12 +0200
committerThomas Bächler <thomas@archlinux.org>2006-08-28 00:21:12 +0200
commitc0dbf1fe0dd2d8aff2fc9637c567fc42e3c9df18 (patch)
tree84c8dcd4ce9a2d282945bb57f6b421cd78717e75 /init
parent1e0c88e13f086226fe7dae3bd9e2fcb6aa557422 (diff)
downloadmkinitcpio-c0dbf1fe0dd2d8aff2fc9637c567fc42e3c9df18.tar.gz
mkinitcpio-c0dbf1fe0dd2d8aff2fc9637c567fc42e3c9df18.tar.xz
temporarily disabled two replace statements
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@164 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'init')
-rw-r--r--init6
1 files changed, 4 insertions, 2 deletions
diff --git a/init b/init
index 8faab99..cd37e04 100644
--- a/init
+++ b/init
@@ -21,8 +21,10 @@ for cmd in $CMDLINE; do
[0123456Ss]) export runlevel="$cmd" ;;
single) export runlevel="S" ;; #some people use 'single'
# only export stuff that does work with dash :)
- *=*) cmd="$(replace "${cmd}" '.' '_')"
- cmd="$(replace "${cmd}" '-' '_')"
+ *=*) # These should only be applied to the lefthand side of the expression
+ # Disable them until a fix is available, as they break things
+ #cmd="$(replace "${cmd}" '.' '_')"
+ #cmd="$(replace "${cmd}" '-' '_')"
export "${cmd}"
;;
*) cmd="$(replace "${cmd}" '.' '_')"