aboutsummaryrefslogtreecommitdiff
path: root/unix
AgeCommit message (Expand)Author
2016-06-18unix/modmachine: Include PinBase class.Paul Sokolovsky
2016-06-18all: Rename mp_obj_type_t::stream_p to protocol.Paul Sokolovsky
2016-06-18unix: Disable FatFs VFS for normal build, keep enabled for coverage.Paul Sokolovsky
2016-06-18unix/alloc: Make coverage build and its overzealous warnings happy.Paul Sokolovsky
2016-06-18unix/alloc: Add option to use uPy's alloc-exec implementation even for libffi.Paul Sokolovsky
2016-06-18unix/Makefile: libffi: Build with -Os.Paul Sokolovsky
2016-06-17unix: Move "utime" module config to C level instead of make level.Paul Sokolovsky
2016-06-17unix: Time to build with --gc-sections.Paul Sokolovsky
2016-06-16unix: Deprecate support for GNU Readline (MICROPY_USE_READLINE=2).Paul Sokolovsky
2016-06-16unix/mpconfigport_minimal.h: Clearly mark where user-define config ends.Paul Sokolovsky
2016-06-16unix: Unbreak "minimal" target by disabling FatFs.Paul Sokolovsky
2016-06-15py/mpconfig.h: MP_NOINLINE is universally useful, move from unix port.Paul Sokolovsky
2016-05-31extmod/vfs_fat.c: Add vfs.stat().Robert HH
2016-05-28unix/Makefile: "make axtls": Automatically fetch submodules if missing.Paul Sokolovsky
2016-05-28unix/mpconfigport.mk: Document MICROPY_STANDALONE make-level option.Paul Sokolovsky
2016-05-26unix: Enable "ussl" module.Paul Sokolovsky
2016-05-26unix/Makefile: nanbox build is not compatible with modussl, disable.Paul Sokolovsky
2016-05-23unix: Support frozen packages.Damien George
2016-05-22py/objstr: Implement str.center().Paul Sokolovsky
2016-05-21unix/unix_mphal: Implement mp_hal_ticks_us().Paul Sokolovsky
2016-05-18unix/mpconfigport_coverage.h: Add dedicated config file for coverage build.Paul Sokolovsky
2016-05-16unix: Add ability to include frozen bytecode in the build.Damien George
2016-05-10unix: Enable uerrno module.Damien George
2016-05-07unix/mphalport: Add mp_hal_delay_us() for consistency with other ports.Pavol Rusnak
2016-04-28unix/Makefile: Make install more compatible (BSD, etc.).Martin Müller
2016-04-19unix: Make sure build dir exists before accessing it for freezing upip.Paul Sokolovsky
2016-04-16py: Add rules for automated extraction of qstrs from sources.Jan Čapek
2016-04-15py: Declare help, input, open builtins in core.Paul Sokolovsky
2016-04-13py: Add ability to have frozen persistent bytecode from .mpy files.Damien George
2016-04-13lib/utils/printf: Rework overriding printer of DEBUG_printf().Paul Sokolovsky
2016-04-11unix: Build with MICROPY_PY_UHASHLIB_SHA1 if already building with axTLS.Paul Sokolovsky
2016-04-08unix: freedos strip and size names for binariespohmelie
2016-04-04unix/modsocket: Use mp_const_empty_map instead of creating empty map.Paul Sokolovsky
2016-04-03unix: djgpp errno.h have no ENOTSUP, so define it to Linux value.pohmelie
2016-04-02unix/file: "encoding" arg to open() isn't kw-only.Paul Sokolovsky
2016-04-02unix/file: Parse "buffering" argument of open() builtin.Paul Sokolovsky
2016-04-01unix: implement -i option (inspect - start REPL after script is finished)Pavol Rusnak
2016-03-27unix/unix_mphal: Hack to make uos.dupterm() actually work.Paul Sokolovsky
2016-03-02unix/modsocket: Add comment regarding close() error checking (which is none).Paul Sokolovsky
2016-02-25unix: Enabled importing of persistent bytecode (.mpy files).Damien George
2016-02-15extmod/vfs_fat_ffconf: Reusable FatFs module, move from stmhal/ffconf.Paul Sokolovsky
2016-02-15extmod/vfs_fat_file: Reusable FatFs module, move from stmhal/file.Paul Sokolovsky
2016-02-15extmod/vfs_fat_diskio: Reusable FatFs module, move from stmhal/diskio.Paul Sokolovsky
2016-02-15py/mpstate.h: fs_user_mount is now standard, reusable uPy functionality.Paul Sokolovsky
2016-02-14unix: Enable VfsFat support.Paul Sokolovsky
2016-02-06unix/file: Stop assuming that O_RDWR == O_RDONLY | O_WRONLY.Paul Sokolovsky
2016-02-01py/mpprint: Fix sign extension when printf'ing %u, %x and %X.Damien George
2016-01-29py/runtime: mp_stack_ctrl_init() should be called immediately on startup.Paul Sokolovsky
2016-01-29unix/main: Remove debug code left from MP_OBJ_TO_PTR refactor.Paul Sokolovsky
2016-01-28lib/utils/printf: Fix printf on release buildsDave Hylands