mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
common: Move gzip functions into a new gzip header
As part of the effort to remove things from common.h, create a new header for the gzip functions. Move the function declarations to it and add missing documentation. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
This commit is contained in:
parent
0d6c7c60ea
commit
0c670fc148
18 changed files with 124 additions and 58 deletions
|
@ -5,14 +5,15 @@
|
|||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <watchdog.h>
|
||||
#include <command.h>
|
||||
#include <console.h>
|
||||
#include <div64.h>
|
||||
#include <gzip.h>
|
||||
#include <image.h>
|
||||
#include <malloc.h>
|
||||
#include <memalign.h>
|
||||
#include <watchdog.h>
|
||||
#include <u-boot/zlib.h>
|
||||
#include <div64.h>
|
||||
|
||||
#define HEADER0 '\x1f'
|
||||
#define HEADER1 '\x8b'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue