diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-06 14:07:40 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-06 14:07:40 +0000 |
commit | 4acaa35a4d12c839786527377e9a5c07a85f18a8 (patch) | |
tree | 13f4cc35840043df6490f23ecf6aca782203a460 /meta/packages/base-files | |
parent | f69248cff5f084b3d91f5ee560504854aa8f8bcc (diff) | |
download | poky-4acaa35a4d12c839786527377e9a5c07a85f18a8.tar.gz |
base-files: set TERM to vt100 only if TERM is not set
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1865 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/base-files')
-rw-r--r-- | meta/packages/base-files/base-files/profile | 4 | ||||
-rw-r--r-- | meta/packages/base-files/base-files_3.0.14.bb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/meta/packages/base-files/base-files/profile b/meta/packages/base-files/base-files/profile index a4c16944b9..3dc22f316a 100644 --- a/meta/packages/base-files/base-files/profile +++ b/meta/packages/base-files/base-files/profile | |||
@@ -2,8 +2,8 @@ | |||
2 | # and Bourne compatible shells (bash(1), ksh(1), ash(1), ...). | 2 | # and Bourne compatible shells (bash(1), ksh(1), ash(1), ...). |
3 | 3 | ||
4 | PATH="/usr/local/bin:/usr/bin:/bin" | 4 | PATH="/usr/local/bin:/usr/bin:/bin" |
5 | EDITOR="/bin/vi" # needed for packages like cron | 5 | EDITOR="/bin/vi" # needed for packages like cron |
6 | TERM="vt100" # Basic terminal capab. For screen etc. | 6 | test -z "$TERM" && TERM="vt100" # Basic terminal capab. For screen etc. |
7 | 7 | ||
8 | if [ ! -e /etc/localtime ]; then | 8 | if [ ! -e /etc/localtime ]; then |
9 | TZ="UTC" # Time Zone. Look at http://theory.uwinnipeg.ca/gnu/glibc/libc_303.html | 9 | TZ="UTC" # Time Zone. Look at http://theory.uwinnipeg.ca/gnu/glibc/libc_303.html |
diff --git a/meta/packages/base-files/base-files_3.0.14.bb b/meta/packages/base-files/base-files_3.0.14.bb index 9a6c222a65..a87c8282e8 100644 --- a/meta/packages/base-files/base-files_3.0.14.bb +++ b/meta/packages/base-files/base-files_3.0.14.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | DESCRIPTION = "Miscellaneous files for the base system." | 1 | DESCRIPTION = "Miscellaneous files for the base system." |
2 | SECTION = "base" | 2 | SECTION = "base" |
3 | PRIORITY = "required" | 3 | PRIORITY = "required" |
4 | PR = "r55" | 4 | PR = "r56" |
5 | LICENSE = "GPL" | 5 | LICENSE = "GPL" |
6 | 6 | ||
7 | SRC_URI = " \ | 7 | SRC_URI = " \ |