summaryrefslogtreecommitdiff
path: root/laden
AgeCommit message (Collapse)Author
2008-11-03Remove .cvsignore files. Add a .gitignore file.Neal H. Walfield
2008-08-142008-08-14 Neal H. Walfield <neal@gnu.org>neal
* laden.h: Include <stdint.h>. (total_memory): New declaration. * laden.c (total_memory): New definition. (load_components): Remove V2 specific code. * kip-fixup.c (kip_fixup): Remove V2 specific code. * ia32-cmain.c (find_components): Add module regions as type -1, not L4_MEMDESC_BOOTLOADER. Don't make total_memory a local variable. Also calculate the total memory in the case where only MBI->MEM_LOWER and MBI->MEM_UPPER are available. Move kernel memory reservation from here... * loader.c (loader_regions_reserve): ... to here. Implement more robustly. Always add descriptors for all memory regions with a type other than -1.
2008-06-292008-06-29 Neal H. Walfield <neal@gnu.org>neal
* ia32-cmain.c (debug_dump): Don't include redundant \n's in debugging output. (modules_relocate): Likewise. * kip-fixup.c (kip_fixup): Likewise. * laden.c (main): Likewise. * loader.c (mem_check): Likewise. (loader_add_region): Likewise. (loader_regions_reserve): Likewise.
2008-06-27Add .cvsignore files.neal
2008-06-272008-06-27 Neal H. Walfield <neal@gnu.org>neal
* output.h (debug): Don't define. * ia32-cmain.c (debug_dump): Update to use standard debug API. (modules_relocate): Likewise. * kip-fixup.c (kip_fixup): Likewise. * laden.c (main): Likewise. * loader.c (mem_check): Likewise. (loader_add_region): Likewise. (loader_regions_reserve): Likewise.
2008-06-062008-06-06 Neal H. Walfield <neal@gnu.org>neal
* ia32-cmain.c (find_components): Reserve 20% of available memory for L4.
2008-05-302008-05-29 Thomas Schwinge <tschwinge@gnu.org>tschwinge
* Makefile.am [ENABLE_TESTS]: Don't build package's program.
2008-05-292008-05-29 Thomas Schwinge <tschwinge@gnu.org>tschwinge
* output-serial.c: Include <stdbool.h>.
2008-05-292008-05-29 Thomas Schwinge <tschwinge@gnu.org>tschwinge
* Makefile.am (laden_CPPFLAGS, laden_CFLAGS, laden_LDFLAGS): Don't discard the respective AM_* flags and also add the respective KERNEL_* flags.
2008-02-11hurd/neal
2008-02-11 Neal H. Walfield <neal@gnu.org> * stddef.h (debug): Change program_name's type to char *. * t-addr-trans.c (program_name): Change type to char *. * t-addr.c (program_name): Likewise. * t-rpc.c (program_name): Likewise. laden/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * laden.h (program_name): Change type to char *. * laden.c (program_name): Likewise. * shutdown.h (program_name): Likewise. * output.h (debug): Change program_name's type to char *. libc-parts/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * ia32-cmain.c (program_name): Change type to char *. * t-setjmp.c (program_name): Likewise. * assert.h (assertx): Change program_name's type to char *. libhurd-btree/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * btree-test.c (program_name): Change type to char *. libhurd-ihash/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * t-ihash.c (program_name): Change type to char *. ruth/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * ruth.c (program_name): Change type to char *. viengoos/ 2008-02-11 Neal H. Walfield <neal@gnu.org> * viengoos.c (program_name): Change type to char *. * viengoos.h (program_name): Likewise. * panic.c (program_name): Likewise. * t-environment.h (program_name): Likewise. (environment_init): Just set program_name to argv[0].
2008-02-08/tschwinge
2008-02-08 Thomas Schwinge <tschwinge@gnu.org> * configure.ac (STATIC_GLIBC): Remove. libc-parts/ 2008-02-08 Thomas Schwinge <tschwinge@gnu.org> * Makefile.am (routines, routines_subexp, routines_objects) (routines_varname, $(routines_objects)): Remove. Partially moved to newlib. newlib/ 2008-02-08 Thomas Schwinge <tschwinge@gnu.org> * Makefile.am (noinst_LIBRARIES): Add `libc-routines.a'. (libc-routines.a, routines_subexp, routines): New target and helper expressions, partially ripped from libc-parts. (clean-local): Extend. laden/ 2008-02-08 Thomas Schwinge <tschwinge@gnu.org> * Makefile.am (laden_LDADD): Link against newlib's `libc-routines.a'. viengoos/ 2008-02-08 Thomas Schwinge <tschwinge@gnu.org> * Makefile.am (viengoos_LDADD): Link against newlib's `libc-routines.a'.
2008-02-06laden/neal
2008-02-06 Neal H. Walfield <neal@gnu.org> * output-serial.c (serial_init): Rewrite command-line parser to not use strtok. viengoos/ 2008-02-06 Neal H. Walfield <neal@gnu.org> * output-serial.c (serial_init): Rewrite command-line parser to not use strtok.
2008-01-24libc-parts/neal
2008-01-24 Neal H. Walfield <neal@gnu.org> * Makefile.am (ARCH_SOURCES): Rename from this... (ARCH_COMMON_SOURCES): ... to this. (ARCH_USER_SOURCES): New variable. (ARCH_KERNEL_SOURCES): Likewise. (noinst_LIBRARIES): Add libc-kernel.a. (common_sources): New variable. (libc_parts_a_SOURCES): Move most files to common_sources. Add $(ARCH_COMMON_SOURCES), $(ARCH_USER_SOURCES) (libc_parts_a_CPPFLAGS): Add -I$(LIBC)/include. (libc_kernel_a_SOURCES): New variable. (libc_kernel_a_CPPFLAGS): Likewise. (libc_kernel_a_LIBADD): Likewise. * s_printf.c: Move from ../ruth/output.c. (s_putchar) [RM_INTERN || _L4_TEST_ENVIRONMENT]: Add appropriate implementation. * _exit.c: New file. * getpagesize.c: Likewise. * ia32-cmain.c: Copied from ../ruth/ia32-cmain.c. Removed dead code. Don't include "ruth.h". Add prototype for main. (program_name): New variable. (finish): Setup program_name based on ARGV[0]. * ia32-crt0.S: Copied from ../ruth/ia32-crt0.c. * panic.c: Copied from ../ruth/panic.c. (panic_): Call _exit. * startup.c: New file. ruth/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * Makefile.am (ARCH_SOURCES): Remove variable. (ruth_SOURCES): Set to ruth.c. (COMMON_CPPFLAGS): Remove -I$(top_builddir)/newlib/include, add -I$@LIBC@/include. * output.c: Move to ../libc-parts/s_printf.c. * output.h: Remove file. * panic.c: Move to ../libc-parts/panic.c. * ruth.h: Remove file. * malloc.c: Likewise. * malloc-wrap.c: Likewise. * ia32-cmain.c: Move to ../libc-parts/ia32-cmain.c. * ia32-crt0.S: Move to ../libc-parts/ia32-crt0.c. * ruth.c: Include <stdio.h>. Don't include "ruth.h". (output_debug): Declare, don't define. (exit): Remove function. (abort): Likewise. (getpagesize): Likewise. laden/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * Makefile.am (laden_LDADD): Set to ../libc-parts/libc-kernel.a, not ../libc-parts/libc-parts.a. viengoos/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * Makefile.am (viengoos_LDADD): Link with ../libc-parts/libc-kernel.a, not ../libc-parts/libc-parts.a
2008-01-23hurd/neal
2008-01-23 Neal H. Walfield <neal@gnu.org> * stddef.h (S_PRINTF): New macro. (debug): Use S_PRINTF rather than printf. * Makefile.am (t_addr_CPPFLAGS): Add -DS_PRINTF=printf. (t_addr_trans_CPPFLAGS): Likewise. (t_rpc_CPPFLAGS): Likewise. libc-parts/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * assert.h: Include <hurd/stddef.h>. (assertx): Use S_PRINTF rather than printf. libhurd-btree/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * Makefile.am (btree_test_CPPFLAGS): New variable. (btree_test_LDADD): Remove. (btree_test_SOURCES): Add btree.c. * btree.c (node_t): Include <stdio.h>. libhurd-ihash/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * Makefile.am (t_ihash_SOURCES): Add ihash.c. (t_ihash_CPPFLAGS): New variable. * t-ihash.c: Include <stdio.h>. libhurd-mm/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * as.c (as_alloced_dump): Use s_printf rather than printf. (as_walk): Likewise. laden/ 2008-01-23 Neal H. Walfield <neal@gnu.org> * Makefile.am (laden_CPPFLAGS): Add -DS_PRINTF=printf. ruth/ 2008-01-24 Neal H. Walfield <neal@gnu.org> * output.h (putchar): Rename from this... (s_putchar): ... to this. (puts): Rename from this... (s_puts): ... to this. (vprintf): Rename from this... (s_vprintf): ... to this. (printf): Rename from this... (s_printf): ... to this. * output.c (putchar): Rename from this... (s_putchar): ... to this. Update users. (puts): Rename from this... (s_puts): ... to this. Update users. (vprintf): Rename from this... (s_vprintf): ... to this. Update users. (printf): Rename from this... (s_printf): ... to this. * Makefile.am (ruth_SOURCES): Add object.h and object.c. * ia32-cmain.c: Include <stddef.h>. (cmain): Use s_printf rather than printf. * panic.c (panic_): Use s_printf and s_vprintf rather than printf and vprintf.
2007-12-242007-12-24 Neal H. Walfield <neal@gnu.org>neal
* ia32-cmain.c (cmain): Cast PROGRAM_NAME to elide gcc warning.
2007-12-232007-12-23 Neal H. Walfield <neal@gnu.org>neal
* laden.c (program_name): Remove extern qualifier.
2007-12-212007-12-21 Neal H. Walfield <neal@gnu.org>neal
* ia32-cmain.c (KMEM_MAX): Set to the last valid byte, not the first invalid byte.
2007-11-162007-11-16 Neal H. Walfield <neal@gnu.org>neal
* laden.h (program_name): Change type to a const char []. * laden.c (program_name): Likewise. * shutdown.h (program_name): Likewise. * output.h (debug): Change program_name's type to a const char [].
2007-08-142007-08-14 Marcus Brinkmann <marcus@gnu.org>marcus
* ia32-shutdown.c (reset): Swap arguments to outb_p.
2007-08-022007-08-02 Neal H. Walfield <neal@gnu.org>neal
* ia32-cmain.c (find_components): Save the correct module number. * loader.c (loader_add_region): When relocating a region, set the new start and end after calling the callback. (loader_regions_reserve): Only convert region descriptors on a V2 kernel.
2007-07-302007-07-30 Neal H. Walfield <neal@gnu.org>neal
* kip-fixup.c (kip_fixup): Use a symbolic name rather than a magic number. [_L4_X2]: Set KIP->MEMORY_INFO.NR to MEMORY_MAP_SIZE. * laden.c (load_components): Don't add L4 memory maps corresponding to the the kernel's, sigma0's, sigma1's or the root task's image. * loader.c (mem_check): Add debugging output. (loader_regions_reserve): Round USED_REGIONS[I].START and USED_REGIONS[I].END appropriately.
2007-07-272007-07-27 Neal H. Walfield <neal@gnu.org>neal
* laden.h (add_memory_map): Improve comment. * loader.h (loader_add_region): Likewise. (loader_remove_region): Likewise. * laden.c (memory_map): Move from here... * loader.c (memory_map): ... to here. * laden.c (memory_map_size): Move from here... * loader.c (memory_map_size): ... to here. * laden.c (loader_get_num_memory_desc): Move from here... * loader.c (loader_get_num_memory_desc): ... to here. * laden.c (loader_get_memory_desc): Move from here... * loader.c (loader_get_memory_desc): ... to here. * kip-fixup.c (kip_fixup): Don't call loader_regions_reserve here... * laden.c (main): ... but here. * loader.c (mem_check): Don't decrement end.
2007-07-262007-07-26 Neal H. Walfield <neal@gnu.org>neal
* loader.h (loader_add_region): Take an additional parameter, the L4 descriptor type. Update callers. (loader_elf_load): Likewise. (loader_regions_reserve): New function. * loader.c: Add field desc_type. (loader_add_region): Take an additional parameter, an L4 descriptor type. Save it in the allocated descriptor. Round the start address to a page boundary. (loader_remove_region): Remove all regions with the name NAME, not just the first one. (loader_regions_reserve): New function. (loader_elf_load): Take an additional parameter, an L4 descriptor type. Mark regions that we allocate with this type. Coalesce regions where possible. * laden.h: Include <assert.h>. (add_memory_map): Improve comment. Add an assert. * ia32-cmain.c (module_relocate): Rename from this... (modules_relocate): ... to this. Handle relocating multiple modules. (find_components): When protecting module data areas, coalesce when possible. Fix an off by one error when calculating the upper memory bound. Rename the module meta data region to better reflect its nature. * kip-fixup.c (kip_fixup): Call loader_regions_reserve before copying the memory descriptors. Don't set KIP->MEMORY_INFO.NR * laden.c (load_components): Allocate a stack for sigma0 and the root server just beyond their highest address. * kip-fixup.c (kip_fixup): Only boot versions of L4 that we know how to boot. * ia32-cmain.c (find_components): Only reserve conventional memory for an X2 kernel.
2007-07-252007-07-25 Neal H. Walfield <neal@gnu.org>neal
* laden.h (add_memory_map): Fix indentation.
2007-07-252007-07-25 Neal H. Walfield <neal@gnu.org>neal
* loader.h (relocate_region): New typedef. (loader_add_region): Add two additional arguments, rr and cookie. Update callers. * loader.c: Include "laden.h". (struct): Add fields rr, cookie and used. (check_region): Remove function. (loader_add_region): Allocate a region descriptor by checking whether the used bit is unset. Don't call check_region, check here if a region is okay. If there is overlap, move the other regions out of the way if possible. (loader_remove_region): Just set the used bit to zero. (loader_elf_load): Don't call check_region. Protect each segment individually. * ia32-cmain.c (cmain): Make a copy of the command line on the stack and pass that to main. (mbi_relocate): New function. (mods_relocate): Likewise. (cmdline_relocate): Likewise. (module_relocate): Likewise. (find_components): Protect the other modules. Protect each module's string individually. Protect the first page. * laden.c (rootserver_relocate): New function. * ia32-cmain.c (start_kernel): Before jumping to IP, load Grub's booloader magic into EAX and the address of the boot info structure into EBX.
2005-01-222005-01-22 Marcus Brinkmann <marcus@gnu.org>marcus
* config.m4: Change to 0x190000 to make more room for a debugging-enabled kernel.
2005-01-07laden/neal
2005-01-07 Neal H. Walfield <neal@gnu.org> * laden.c (parse_args): Argument is `--reboot', not `--reset'.
2005-01-07deva/neal
2005-01-07 Neal H. Walfield <neal@gnu.org> * output.h (debug): Preface __VA_ARGS__ with ## thereby making it optional. laden/ 2005-01-07 Neal H. Walfield <neal@gnu.org> * output.h (debug): Preface __VA_ARGS__ with ## thereby making it optional. physmem/ 2005-01-07 Neal H. Walfield <neal@gnu.org> * output.h (debug): Preface __VA_ARGS__ with ## thereby making it optional. task/ 2005-01-07 Neal H. Walfield <neal@gnu.org> * output.h (debug): Preface __VA_ARGS__ with ## thereby making it optional. wortel/ 2005-01-07 Neal H. Walfield <neal@gnu.org> * output.h (debug): Preface __VA_ARGS__ with ## thereby making it optional.
2004-11-17deva/neal
2004-11-17 Neal H. Walfield <neal@gnu.org> * Makefile.am (bootdir): New variable. (boot_PROGRAMS): Use this instead of noinst_PROGRAMS. laden/ 2004-11-17 Neal H. Walfield <neal@gnu.org> * Makefile.am (bootdir): New variable. (boot_PROGRAMS): Use this instead of noinst_PROGRAMS. physmem/ 2004-11-17 Neal H. Walfield <neal@gnu.org> * Makefile.am (bootdir): New variable. (boot_PROGRAMS): Use this instead of noinst_PROGRAMS. task/ 2004-11-17 Neal H. Walfield <neal@gnu.org> * Makefile.am (bootdir): New variable. (boot_PROGRAMS): Use this instead of noinst_PROGRAMS. wortel/ 2004-11-17 Neal H. Walfield <neal@gnu.org> * Makefile.am (bootdir): New variable. (boot_PROGRAMS): Use this instead of noinst_PROGRAMS.
2004-11-17deva/neal
2004-11-17 Neal H. Walfield <neal@gnu.org> * output.h (debug): Include program_name and __FUNCTION__ in output. laden/ 2004-11-17 Neal H. Walfield <neal@gnu.org> * output.h (debug): Include program_name and __FUNCTION__ in output. physmem/ 2004-11-17 Neal H. Walfield <neal@gnu.org> * output.h (debug): Include program_name and __FUNCTION__ in output. * physmem.c (create_bootstrap_caps): First argument to debug must be a constant format string. task/ 2004-11-17 Neal H. Walfield <neal@gnu.org> * output.h (debug): Include program_name and __FUNCTION__ in output. wortel/ 2004-11-17 Neal H. Walfield <neal@gnu.org> * output.h (debug): Include program_name and __FUNCTION__ in output.
2004-10-232004-10-23 Marcus Brinkmann <marcus@gnu.org>marcus
* ia32-cmain.c (start_kernel): Flush the D-cache. * laden.c (main): Call panic() instead of shutdown() if kernel returns.
2004-03-29libl4/marcus
2003-03-30 Wolfgang Jährling <wolfgang@pro-linux.de> * l4/types.h (_L4_WORDSIZE_32, _L4_WORDSIZE_64): Removed. All users changed to use numeric constants 32 and 64 instead. * l4/gnu/types.h (L4_WORDSIZE_32, L4_WORDSIZE_64): Removed. * l4/math.h: All users of _L4_WORDSIZE_32 or _L4_WORDSIZE_64 changed to use numeric constants 32 and 64 instead. * l4/thread.h: Likewise. * l4/kip.h: Likewise. Use _L4_WORDSIZE instead of L4_WORDSIZE. * ia32/l4/bits/types.h (_L4_WORDSIZE): Define to 32. * powerpc/l4/bits/types.h (_L4_WORDSIZE): Likewise. laden/ 2004-03-30 Marcus Brinkmann <marcus@gnu.org> * loader.c (loader_elf_dest, loader_elf_load): Use 32 and 64 instead of _L4_WORDSIZE_32 and _L4_WORDSIZE_64. wortel/ 2004-03-30 Marcus Brinkmann <marcus@gnu.org> * loader.c (loader_elf_dest, loader_elf_load): Use 32 and 64 instead of _L4_WORDSIZE_32 and _L4_WORDSIZE_64.
2004-03-162004-03-15 Marcus Brinkmann <marcus@gnu.org>marcus
* loader.h (loader_get_memory_desc): Change return type to l4_memory_desc_t *. * laden.h (rootserver_t): Remove typedef. (kernel, sigma0, sigma1, rootserver): Change type to l4_rootserver_t. (memory_map): Change type to l4_memory_desc_t. * laden.c (kernel, sigma0, sigma1, rootserver): Change type to l4_rootserver_t. (memory_map): Change type to l4_memory_desc_t. (loader_get_memory_desc): Change return type to l4_memory_desc_t *. * kip-fixup.c (kip_fixup): Use cast to l4_memory_desc_t.
2003-10-26laden/marcus
2003-10-26 Marcus Brinkmann <marcus@gnu.org> * Makefile.am (AM_CPPFLAGS): Removed. (laden_CFLAGS): Rename to ... (laden_CPPFLAGS): Add AM_CPPFLAGS. Change -I$(top_srcdir)/include to -I$(top_builddir). physmem/ 2003-10-26 Marcus Brinkmann <marcus@gnu.org> * Makefile.am (physmem_CPPFLAGS): Use top_builddir for include directory. wortel/ 2003-10-26 Marcus Brinkmann <marcus@gnu.org> * Makefile.am (AM_CPPFLAGS): Removed. (wortel_CFLAGS): Rename to ... (wortel_CPPFLAGS): Add AM_CPPFLAGS. Change -I$(top_srcdir)/include to -I$(top_builddir).
2003-10-122003-10-12 Marcus Brinkmann <marcus@gnu.org>marcus
* acinclude.m4: New file. * configure.ac: Include laden/config.m4, wortel/config.m4, and physmem/config.m4. laden/ 2003-10-12 Marcus Brinkmann <marcus@gnu.org> * config.m4: New file. * Makefile.am (laden_LDFLAGS): Replace load address with @HURD_LADEN_LOAD_ADDRESS@. physmem/ 2003-10-12 Marcus Brinkmann <marcus@gnu.org> * config.m4: New file. * Makefile.am (physmem_LDFLAGS): Replace load address with @HURD_PHYSMEM_LOAD_ADDRESS@. wortel/ 2003-10-12 Marcus Brinkmann <marcus@gnu.org> * config.m4: New file. * Makefile.am (wortel_LDFLAGS): Replace load address with @HURD_WORTEL_LOAD_ADDRESS@.
2003-10-04laden/marcus
2003-10-04 Marcus Brinkmann <marcus@gnu.org> * laden.h (add_memory_map): Don't round END up to 1K. * ia32-cmain.c (find_components): Pass the address of the last byte as END to add_memory_map. Don't do bogus alignment check without BIOS map. Add 0xc0000 - 0xf0000 as shared memory. Initially, add the whole address space as shared memory to allow arbitrary device access. * loader.c: Include <l4/kip.h>. (mem_check): Change type of address args to l4_word_t. Use l4_memory_desc_low and l4_memory_desc_high to determine range of memory descriptor. The high address is inclusive now, so take this into account. Allow conventional memory descriptors to override non-conventional. Use L4_PRIxWORD. wortel/ 2003-10-04 Marcus Brinkmann <marcus@gnu.org> * loader.c: Include <l4/kip.h>. (mem_check): Change type of address args to l4_word_t. Use l4_memory_desc_low and l4_memory_desc_high to determine range of memory descriptor. The high address is inclusive now, so take this into account. Allow conventional memory descriptors to override non-conventional. Use L4_PRIxWORD.
2003-09-292003-09-29 Marcus Brinkmann <marcus@gnu.org>marcus
* loader.c (loader_elf_load): Fix wordsize check. Submitted by Johan Rydberg.
2003-09-262003-09-25 Johan Rydberg <jrydberg@night.trouble.net>marcus
* laden.c (main): Call start_kernel to launch kernel instead of calling the kernel start address. * laden.h (start_kernel): Prototype. * ia32-cmain.c (start_kernel): New function.
2003-09-25Fix typo.marcus
2003-09-25laden/marcus
wortel/ 2003-09-25 Marcus Brinkmann <marcus@gnu.org> * loader.c [HAVE_CONFIG_H]: Include <config.h>. (loader_elf_load): Rewritten architecture check of ELF binary, support PPC now.
2003-09-25wortel/marcus
2003-09-25 Marcus Brinkmann <marcus@gnu.org> * elf.h: Remove cruft. laden/ 2003-09-25 Marcus Brinkmann <marcus@gnu.org> * elf.h: Remove cruft.
2003-09-21laden/marcus
wortel/ 2003-09-21 Marco Gerards <metgerards@student.han.nl> * output-serial.c (serial_init): Make sure the order of the arguments of outb are correct.
2003-09-21laden/marcus
physmem/ 2003-09-21 Marco Gerards <metgerards@student.han.nl> * Makefile.am (AM_CPPFLAGS): New variable. libhurd-ihash/ wortel/ 2003-09-21 Marco Gerards <metgerards@student.han.nl> * Makefile.am (AM_CPPFLAGS): Use top_builddir instead of
2003-09-192003-09-19 Marcus Brinkmann <marcus@gnu.org>marcus
* ia32-cmain.c (debug_dump): Cast mod[nr].string to char *. * laden.c (parse_args): Remove superfluous arguments. * loader.c: Include <string.h>. * kip-fixup.c (kip_fixup): Use %p for pointer. * output-serial.c: Include <stdlib.h>.
2003-09-19laden/marcus
2003-09-19 Marcus Brinkmann <marcus@gnu.org> * Makefile.am (laden_CFLAGS): Add -I$(top_srcdir)/libc-parts. * output.c: Include <stdlib.h> and <string.h>. * output.h (struct output_driver): Add CFG argument to INIT function. (output_init): Make NAME argument const, rename it to DRIVER. * output.c (output_init): Likewise. Only check if the prefix of DRIVER is a driver name. Then skip a trailing comma and pass the remainder via the new variable DRIVER_CFG to the init function of the driver. * output-vga.c (vga_init): Add CFG argument. * output-serial.c: New file by Daniel Wagner <wagi@gmx.de>. wortel/ 2003-09-19 Marcus Brinkmann <marcus@gnu.org> * Makefile.am (wortel_CFLAGS): Add -I$(top_srcdir)/libc-parts. * output.c: Include <stdlib.h> and <string.h>. * output.h (struct output_driver): Add CFG argument to INIT function. (output_init): Make NAME argument const, rename it to DRIVER. * output.c (output_init): Likewise. Only check if the prefix of DRIVER is a driver name. Then skip a trailing comma and pass the remainder via the new variable DRIVER_CFG to the init function of the driver. * output-vga.c (vga_init): Add CFG argument. * output-serial.c: New file by Daniel Wagner <wagi@gmx.de>.
2003-09-18Break if output driver found.marcus
2003-09-15Change the semantics of END of a region (to be in line with grub modules andmarcus
L4 memdescs high address) to exclude the byte with address END.
2003-09-15Add puts and fix printf/putchar prototypes. Patch by Jeroen Dekkers.marcus
2003-09-15Merge changes from wortel version.marcus
2003-09-13Add libc-parts, which takes functions out of libc.a bit by bit.marcus