[arch-projects] [PATCH] [mkinitcpio] Update PS1 ramfs -> rootfs
This is cosmetic change, but using rootfs is more correct than ramfs. [Rootfs is a special instance of ramfs or tmpfs, if that is enabled] Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> --- init_functions | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/init_functions b/init_functions index 787b925..9611c27 100644 --- a/init_functions +++ b/init_functions @@ -26,7 +26,7 @@ poll_device() { } launch_interactive_shell() { - export PS1='[ramfs \W]\$ ' + export PS1='[rootfs \W]\$ ' [ "$1" = "--exec" ] && exec sh -i sh -i } -- 1.7.8.1
On Thu, Jan 12, 2012 at 09:12:53PM -0300, Gerardo Exequiel Pozzi wrote:
This is cosmetic change, but using rootfs is more correct than ramfs. [Rootfs is a special instance of ramfs or tmpfs, if that is enabled]
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> --- init_functions | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/init_functions b/init_functions index 787b925..9611c27 100644 --- a/init_functions +++ b/init_functions @@ -26,7 +26,7 @@ poll_device() { }
launch_interactive_shell() { - export PS1='[ramfs \W]\$ ' + export PS1='[rootfs \W]\$ ' [ "$1" = "--exec" ] && exec sh -i sh -i } -- 1.7.8.1
Sounds good to me.
participants (2)
-
Dave Reisner
-
Gerardo Exequiel Pozzi