summaryrefslogtreecommitdiff
path: root/gpxe/src/include/usr
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/src/include/usr')
-rw-r--r--gpxe/src/include/usr/autoboot.h25
-rw-r--r--gpxe/src/include/usr/dhcpmgmt.h17
-rw-r--r--gpxe/src/include/usr/ifmgmt.h19
-rw-r--r--gpxe/src/include/usr/imgmgmt.h22
-rw-r--r--gpxe/src/include/usr/iwmgmt.h17
-rw-r--r--gpxe/src/include/usr/route.h14
6 files changed, 0 insertions, 114 deletions
diff --git a/gpxe/src/include/usr/autoboot.h b/gpxe/src/include/usr/autoboot.h
deleted file mode 100644
index a9180202..00000000
--- a/gpxe/src/include/usr/autoboot.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef _USR_AUTOBOOT_H
-#define _USR_AUTOBOOT_H
-
-/** @file
- *
- * Automatic booting
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER );
-
-#include <gpxe/in.h>
-struct net_device;
-
-extern int shutdown_exit_flags;
-
-extern void autoboot ( void );
-extern int boot_next_server_and_filename ( struct in_addr next_server,
- const char *filename );
-extern int boot_root_path ( const char *root_path );
-
-extern int pxe_menu_boot ( struct net_device *netdev )
- __attribute__ (( weak ));
-
-#endif /* _USR_AUTOBOOT_H */
diff --git a/gpxe/src/include/usr/dhcpmgmt.h b/gpxe/src/include/usr/dhcpmgmt.h
deleted file mode 100644
index 2394dac4..00000000
--- a/gpxe/src/include/usr/dhcpmgmt.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef _USR_DHCPMGMT_H
-#define _USR_DHCPMGMT_H
-
-/** @file
- *
- * DHCP management
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER );
-
-struct net_device;
-
-extern int dhcp ( struct net_device *netdev );
-extern int pxebs ( struct net_device *netdev, unsigned int pxe_type );
-
-#endif /* _USR_DHCPMGMT_H */
diff --git a/gpxe/src/include/usr/ifmgmt.h b/gpxe/src/include/usr/ifmgmt.h
deleted file mode 100644
index f762c7ba..00000000
--- a/gpxe/src/include/usr/ifmgmt.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef _USR_IFMGMT_H
-#define _USR_IFMGMT_H
-
-/** @file
- *
- * Network interface management
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER );
-
-struct net_device;
-
-extern int ifopen ( struct net_device *netdev );
-extern void ifclose ( struct net_device *netdev );
-extern void ifstat ( struct net_device *netdev );
-extern int iflinkwait ( struct net_device *netdev, unsigned int max_wait_ms );
-
-#endif /* _USR_IFMGMT_H */
diff --git a/gpxe/src/include/usr/imgmgmt.h b/gpxe/src/include/usr/imgmgmt.h
deleted file mode 100644
index 0c8c8cf7..00000000
--- a/gpxe/src/include/usr/imgmgmt.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef _USR_IMGMGMT_H
-#define _USR_IMGMGMT_H
-
-/** @file
- *
- * Image management
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER );
-
-struct image;
-
-extern int imgfetch ( struct image *image, const char *uri_string,
- int ( * image_register ) ( struct image *image ) );
-extern int imgload ( struct image *image );
-extern int imgexec ( struct image *image );
-extern struct image * imgautoselect ( void );
-extern void imgstat ( struct image *image );
-extern void imgfree ( struct image *image );
-
-#endif /* _USR_IMGMGMT_H */
diff --git a/gpxe/src/include/usr/iwmgmt.h b/gpxe/src/include/usr/iwmgmt.h
deleted file mode 100644
index c1bdc37a..00000000
--- a/gpxe/src/include/usr/iwmgmt.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef _USR_IWMGMT_H
-#define _USR_IWMGMT_H
-
-/** @file
- *
- * Wireless network interface management
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER );
-
-struct net80211_device;
-
-extern void iwstat ( struct net80211_device *dev );
-extern int iwlist ( struct net80211_device *dev );
-
-#endif /* _USR_IWMGMT_H */
diff --git a/gpxe/src/include/usr/route.h b/gpxe/src/include/usr/route.h
deleted file mode 100644
index 855fa7ba..00000000
--- a/gpxe/src/include/usr/route.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef _USR_ROUTE_H
-#define _USR_ROUTE_H
-
-/** @file
- *
- * Routing table management
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER );
-
-extern void route ( void );
-
-#endif /* _USR_ROUTE_H */