Displaying 5 results from an estimated 5 matches for "clearscreen".
Did you mean:
clear_screen
2006 Mar 11
6
is there a formatted output in R?
something like "sprintf" in C?
so I can do:
print(sprintf("the correct result is %3.4f\n", myresult));
-------
Also, I am desperately looking for a "clear console screen" function in
R...
thanks a lot!
[[alternative HTML version deleted]]
2009 Feb 22
2
NEW: COM32 module to run another command, optionally clearing the screen
...ation, Inc., 53 Temple Place Ste 330,
* Boston MA 02111-1307, USA; either version 2 of the License, or
* (at your option) any later version; incorporated herein by reference.
*
* ----------------------------------------------------------------------- */
/*
* runc.c
*
* Run Command & ClearScreen COM32 application; If -c is the first argument,
* it clears the screen (using newlines) then calls as a KERNEL with a boot
* line command as the APPEND line. This application will also compile as a
* Linux binary to print the argument string and clear the screen.
*/
/*
* History
* b007 Ren...
2015 Mar 14
0
[PATCH 0/1] EFI access from Com32 modules
...return 0;
+
+}
+
+EFI_HANDLE image = NULL;
+EFI_SYSTEM_TABLE* systab = NULL;
+
+int doTheJob(void)
+{
+
+
+ image = (EFI_HANDLE) firmware->image;
+ systab = (EFI_SYSTEM_TABLE*) firmware->table;
+
+ InitializeLib(image, systab);
+
+ //Clear screen
+ uefi_call_wrapper(ST->ConOut->ClearScreen, 1, ST->ConOut);
+
+ Print(L"This Com32 instance of elf_bios_efi.c32 is running on an EFI environment\nPress any key to continue...");
+ efi_getchar(NULL);
+
+ return 0;
+}
+
+
+#endif
+
+
+
+
+int main(int argc, char *argv[])
+{
+
+
+ return doTheJob();
+
+
+}
diff -uprN...
2016 Mar 20
0
[PATCH 0/1] EFI image booting capabilities
...memset(&buf,'\n',sizeof(buf));
> + printf("%s",buf);
> +
> +}
> +
> int efi_pollchar(void)
> {
> SIMPLE_INPUT_INTERFACE *in = ST->ConIn;
This probably deserves a NULL terminator but perhaps calling
EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.ClearScreen() may be better.
> @@ -1042,6 +1061,97 @@ static int exit_boot(struct boot_params
> return 0;
> }
>
> +
> +/* efi_boot_efi:
> + * Boots an efi image
> + */
> +int efi_boot_efi(void *kernel_buf, size_t kernel_size,
> + char *cmdline, int cmdlineS...
2015 Feb 20
6
[PATCH 0/1] EFI image booting capabilities
This patch adds to the core EFI image booting capabilities.
It was tested on VMware EFI clients and HP Elitebook EFI notebooks,
only on PXE environments but it should work on non-PXE scenarios as well.
Feedback appreciated.
Best,
Patrick
Signed-off-by: Patrick Masotta <masottaus at yahoo.com>
---
diff -uprN a/com32/elflink/ldlinux/execute.c b/com32/elflink/ldlinux/execute.c
---