tools: sg_write_buffer: add sg_write_buffer for FFU
authorHyojun Kim <hyojun@google.com>
Thu, 1 Mar 2018 21:42:44 +0000 (13:42 -0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Wed, 14 Mar 2018 04:19:09 +0000 (13:19 +0900)
commitb39f62dce45a5d4256a331201b1efa0ddfc65bac
treebb2de8e56026860593dcfe0d61e2fc5b4b499afe
parent254cdad2ee035883e68053c066d6aac1cce500f9
tools: sg_write_buffer: add sg_write_buffer for FFU

sg_write_buffer sources are added for FFU.

Signed-off-by: Hyojun Kim <hyojun@google.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@google.com>
30 files changed:
configure.ac
tools/Makefile.am
tools/sg_write_buffer/Android.bp [new file with mode: 0644]
tools/sg_write_buffer/Makefile.am [new file with mode: 0644]
tools/sg_write_buffer/include/freebsd_nvme_ioctl.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_cmds.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_cmds_basic.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_cmds_extra.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_cmds_mmc.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_io_linux.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_lib.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_lib_data.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_linux_inc.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_pr2serr.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_pt.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_pt_linux.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_pt_nvme.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_pt_win32.h [new file with mode: 0644]
tools/sg_write_buffer/include/sg_unaligned.h [new file with mode: 0644]
tools/sg_write_buffer/sg_cmds_basic.c [new file with mode: 0644]
tools/sg_write_buffer/sg_cmds_basic2.c [new file with mode: 0644]
tools/sg_write_buffer/sg_cmds_extra.c [new file with mode: 0644]
tools/sg_write_buffer/sg_cmds_mmc.c [new file with mode: 0644]
tools/sg_write_buffer/sg_io_linux.c [new file with mode: 0644]
tools/sg_write_buffer/sg_lib.c [new file with mode: 0644]
tools/sg_write_buffer/sg_lib_data.c [new file with mode: 0644]
tools/sg_write_buffer/sg_pt_common.c [new file with mode: 0644]
tools/sg_write_buffer/sg_pt_linux.c [new file with mode: 0644]
tools/sg_write_buffer/sg_pt_linux_nvme.c [new file with mode: 0644]
tools/sg_write_buffer/sg_write_buffer.c [new file with mode: 0644]