diff options
| author | Damien George <damien@micropython.org> | 2022-04-26 17:28:39 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-04-28 17:23:03 +1000 |
| commit | 402df833fe6da5233c83c58421e81493cda54f67 (patch) | |
| tree | c56176da71b30711764decc5068fdb8ea9376c4d /ports/unix/main.c | |
| parent | 59c5d4161120db28bc6cbc7653f2e7fdb4a87370 (diff) | |
py/modsys: Introduce sys.implementation._machine constant.
This contains a string useful for identifying the underlying machine. This
string is kept consistent with the second part of the REPL banner via the
new config option MICROPY_BANNER_MACHINE.
This makes os.uname() more or less redundant, as all the information in
os.uname() is now available in the sys module.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'ports/unix/main.c')
| -rw-r--r-- | ports/unix/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/unix/main.c b/ports/unix/main.c index ea3154860..8d7fcf484 100644 --- a/ports/unix/main.c +++ b/ports/unix/main.c @@ -179,8 +179,8 @@ STATIC char *strjoin(const char *s1, int sep_char, const char *s2) { STATIC int do_repl(void) { mp_hal_stdout_tx_str(MICROPY_BANNER_NAME_AND_VERSION); - mp_hal_stdout_tx_str("; " MICROPY_PY_SYS_PLATFORM " [" MICROPY_PLATFORM_COMPILER "] version\n" - "Use Ctrl-D to exit, Ctrl-E for paste mode\n"); + mp_hal_stdout_tx_str("; " MICROPY_BANNER_MACHINE); + mp_hal_stdout_tx_str("\nUse Ctrl-D to exit, Ctrl-E for paste mode\n"); #if MICROPY_USE_READLINE == 1 |
