mirror of
https://github.com/ipxe/ipxe
synced 2025-12-27 10:02:42 +03:00
[linux] Add command line arguments
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>
This commit is contained in:
committed by
Michael Brown
parent
91fb434bda
commit
ddef2e1bc1
@@ -16,6 +16,9 @@ _start:
|
||||
pushl %edi // argv -> C arg2
|
||||
pushl %esi // argc -> C arg1
|
||||
|
||||
call save_args
|
||||
|
||||
/* Our main doesn't use any arguments */
|
||||
call main
|
||||
|
||||
movl %eax, %ebx // rc -> syscall arg1
|
||||
|
||||
@@ -13,6 +13,9 @@ _start:
|
||||
|
||||
andq $~15, %rsp // 16-byte align the stack
|
||||
|
||||
call save_args
|
||||
|
||||
/* Our main doesn't use any arguments */
|
||||
call main
|
||||
|
||||
movq %rax, %rdi // rc -> syscall arg1
|
||||
|
||||
Reference in New Issue
Block a user