mirror of
https://github.com/ipxe/ipxe
synced 2025-12-23 05:21:49 +03:00
Add basic "fetch" and "imgstat" commands.
This commit is contained in:
13
src/include/usr/fetch.h
Normal file
13
src/include/usr/fetch.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef _USR_FETCH_H
|
||||
#define _USR_FETCH_H
|
||||
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* Fetch file as executable/loadable image
|
||||
*
|
||||
*/
|
||||
|
||||
extern int fetch ( struct image *image, const char *filename );
|
||||
|
||||
#endif /* _USR_FETCH_H */
|
||||
12
src/include/usr/imgmgmt.h
Normal file
12
src/include/usr/imgmgmt.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#ifndef _USR_IMGMGMT_H
|
||||
#define _USR_IMGMGMT_H
|
||||
|
||||
/** @file
|
||||
*
|
||||
* Image management
|
||||
*
|
||||
*/
|
||||
|
||||
extern void imgstat ( struct image *image );
|
||||
|
||||
#endif /* _USR_IMGMGMT_H */
|
||||
Reference in New Issue
Block a user