diff options
| author | Tom Rini <[email protected]> | 2021-11-12 10:14:24 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-11-12 10:14:24 -0500 |
| commit | 515bf78ff975d474f895bf86b4e16eade51c8dbd (patch) | |
| tree | 49114762efa8154f2a2f75d8718cf650e7f0fc09 /common/image-host.c | |
| parent | 1e72ad6b387c599f477f83cda67ab525c089a9b0 (diff) | |
| parent | 6f84e809d9a373961d34f5b408bf44702b8c978c (diff) | |
Merge branch '2021-11-12-assorted-updates'
- A number of pxe related cleanups and related re-organization.
- A few related pxe/sysboot/extlinux improvements
- Remove some dead code.
- Update Azure to use a newer Windows build environment
- Add a .get_maintainer.conf file
- A few minor TI SoC platform updates
Diffstat (limited to 'common/image-host.c')
| -rw-r--r-- | common/image-host.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/common/image-host.c b/common/image-host.c deleted file mode 100644 index 20a9521948b..00000000000 --- a/common/image-host.c +++ /dev/null @@ -1,27 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * Image code used by host tools (and not boards) - * - * (C) Copyright 2008 Semihalf - * - * (C) Copyright 2000-2006 - * Wolfgang Denk, DENX Software Engineering, [email protected]. - */ - -#include <time.h> - -void memmove_wd(void *to, void *from, size_t len, ulong chunksz) -{ - memmove(to, from, len); -} - -void genimg_print_size(uint32_t size) -{ - printf("%d Bytes = %.2f KiB = %.2f MiB\n", size, (double)size / 1.024e3, - (double)size / 1.048576e6); -} - -void genimg_print_time(time_t timestamp) -{ - printf("%s", ctime(×tamp)); -} |
