OpenSDE Framework (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.4 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: target/early/initramfs/etc_rc.d_functions-ansi.in.patch
  5. # Copyright (C) 2008 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. --- ./etc/rc.d/functions-ansi.in.orig 2008-02-15 13:43:05.000000000 +0000
  17. +++ ./etc/rc.d/functions-ansi.in 2008-02-15 13:44:12.000000000 +0000
  18. @@ -16,8 +16,8 @@
  19. #
  20. ECHO='echo -e'
  21. -ESC='\e' # \e or \033
  22. -BELL='\a' # \a or 07
  23. +ESC='\033' # \e or \033
  24. +BELL='\07' # \a or 07
  25. ART_SUCCESS=" OK "
  26. ART_FAILURE=" FAIL"
  27. @@ -46,10 +46,9 @@
  28. columns=$( if ! stty size -F /dev/tty; then
  29. stty size -F /dev/console
  30. fi 2> /dev/null | cut -d' ' -f2 )
  31. - [ -n "$columns" ] || columns=80
  32. # fill with dots with an "arrow" pointing down at the end.
  33. - for (( x=1; x<columns; x++ )); do
  34. + for x in $( seq 1 ${columns:-80} ); do
  35. $ECHO -n '.'
  36. done
  37. $ECHO -n "$MOVE_LEFT_NEXT$ART_NEXT\r"