commit | ce05f73a7d861e9d0a28d477fbe2e06681f339f4 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sun Jan 26 11:43:23 2025 -0700 |
committer | Tom Rini <trini@konsulko.com> | Mon Feb 03 16:01:36 2025 -0600 |
tree | 2d94971d360e29dfedcaf34c64be06ab7d4de5bc | |
parent | bb1492ebf8d663357aefdfbc3d62843a79c74c38 [diff] |
lib: Mark memcpy() and memmove() as relocation code Mark these functions as needed by relocation. These functions are used to copy data while relocating the next-phase image. Drop the 'safe' versions from SPL as they are not needed. Change the static array to a local one, to avoid link errors when trying to access the data. Signed-off-by: Simon Glass <sjg@chromium.org>