aboutsummaryrefslogtreecommitdiff
path: root/src/include/hci
AgeCommit message (Collapse)AuthorFilesLines
2021-02-28[linux] Use host glibc system call wrappersMichael Brown1-31/+0
When building as a Linux userspace application, iPXE currently implements its own system calls to the host kernel rather than relying on the host's C library. The output binary is statically linked and has no external dependencies. This matches the general philosophy of other platforms on which iPXE runs, since there are no external libraries available on either BIOS or UEFI bare metal. However, it would be useful for the Linux userspace application to be able to link against host libraries such as libslirp. Modify the build process to perform a two-stage link: first picking out the requested objects in the usual way from blib.a but with relocations left present, then linking again with a helper object to create a standard hosted application. The helper object provides the standard main() entry point and wrappers for the Linux system calls required by the iPXE Linux drivers and interface code. Signed-off-by: Michael Brown <mcb30@ipxe.org>
2015-03-02[legal] Relicense files under GPL2_OR_LATER_OR_UBDLMichael Brown1-1/+5
These files cannot be automatically relicensed by util/relicense.pl since they either contain unusual but trivial contributions (such as the addition of __nonnull function attributes), or contain lines dating back to the initial git revision (and so require manual knowledge of the code's origin). Signed-off-by: Michael Brown <mcb30@ipxe.org>
2013-11-05[cmdline] Make "dhcp" command a synonym for "ifconf"Michael Brown1-0/+1
Signed-off-by: Michael Brown <mcb30@ipxe.org>
2013-11-05[cmdline] Allow "if<xxx>" commands to take optionsMichael Brown1-5/+38
Allow commands implemented using ifcommon_exec() to accept command-specific options. Signed-off-by: Michael Brown <mcb30@ipxe.org>
2012-07-20[legal] Update FSF mailing address in GPL licence textsMichael Brown1-1/+2
Suggested-by: Daniel P. Berrange <berrange@redhat.com> Signed-off-by: Michael Brown <mcb30@ipxe.org>
2010-11-21[ifmgmt] Use generic option-parsing libraryMichael Brown1-1/+8
Total cost: 66 bytes Signed-off-by: Michael Brown <mcb30@ipxe.org>
2010-08-19[linux] Add command line argumentsPiotr Jaroszyński1-0/+31
Support qemu-like arguments for network setup: --net driver_name[,setting=value]* and global settings: --settings setting=value[,setting=value]* Signed-off-by: Piotr Jaroszyński <p.jaroszynski@gmail.com> Signed-off-by: Michael Brown <mcb30@ipxe.org>
2009-06-28[ifmgmt] Move ifmgmt_cmd.h to include/hciMichael Brown1-0/+30