Age | Commit message (Collapse) | Author | |
---|---|---|---|
1997-07-07 | DOH! I got this right in the mem case but not in the io one. | Niklas Hallqvist | |
1997-07-07 | Too many things include <machine/ansi.h> w/o <sys/types.h> so | Todd C. Miller | |
make time_t int not int32_t. | |||
1997-07-06 | DDB (crippled), BOOT_CONFIG (not yet working), DISKLABEL_*, fxp, wd & acd | Niklas Hallqvist | |
1997-07-06 | DDB files + some major number specifications that were missing | Niklas Hallqvist | |
1997-07-06 | Safer implementations of *_raw_multi_* funcs | Niklas Hallqvist | |
1997-07-06 | wd and acd support | Niklas Hallqvist | |
1997-07-06 | Fix the register saving when entering the debugger. Present the trap in | Niklas Hallqvist | |
clear text too. | |||
1997-07-06 | Use a string array to get the name of a trap | Niklas Hallqvist | |
1997-07-06 | Enter DDB via CTL+ALT+ESC + style nits | Niklas Hallqvist | |
1997-07-06 | DDB support (much not yet implemented). | Niklas Hallqvist | |
1997-07-06 | Add kernel versions of setjmp/longjmp, needed for DDB. Add an esym pointer | Niklas Hallqvist | |
too that should be initialized by the bootloader with the end of the symtab. | |||
1997-07-06 | If -b specified as bootflag (-d was taken) enter DDB. If using a PC keyboard | Niklas Hallqvist | |
this does not yet work as the keyboard is not enough setup to work even in polled mode. | |||
1997-07-06 | Make traps go into DDB if configured | Niklas Hallqvist | |
1997-07-06 | Make DDB support more complete (still faking a lot) | Niklas Hallqvist | |
1997-07-06 | Erase the correct amount of columns. Remove static specifiers. | Niklas Hallqvist | |
1997-07-06 | maxpartitions 16 | Todd C. Miller | |
1997-07-06 | Remove -Wcast-qual unless someone has a way to make it not care | Todd C. Miller | |
about discarding "volatile". Implicit casts via prototypes cause major headaches in conjunction with volatile variables. | |||
1997-07-05 | disable fxp for now | Theo de Raadt | |
1997-07-05 | Make _BSD_TIME_T_ int32_t on all platforms. You can't write | Todd C. Miller | |
lint-free code when these differ in name accross platforms. Fundamnetal type has not changed (was int on alpha and long on others). | |||
1997-07-05 | Remove obsolete files | Niklas Hallqvist | |
1997-07-05 | The vga console bug is now fixed, argument ordering problem. | Niklas Hallqvist | |
1997-07-03 | fxp support, turned off in alpha until tested | Theo de Raadt | |
1997-06-30 | Add lib* so obj links get made. Duh, Todd. | Todd C. Miller | |
1997-06-30 | Add MBR & i386/disklabel probing in a generic fashion usable for more | Niklas Hallqvist | |
disklabel types, and for other architectures if they chose. Both read/write supported for both alpha and i386/arc disklabels. ISO9660 spoofing kept and tested. Add "option DISKLABEL_ALL" to your config to use. | |||
1997-06-27 | Add a missing space in usage message. | Todd C. Miller | |
1997-06-25 | Include usage notes in the rest of the endian.h files for consistancy. | grr | |
1997-06-25 | Big endian HTON?() macros should be (void)(x). | Jason Downs | |
1997-06-24 | happy birthday | kstailey | |
1997-06-05 | non-DEBUG __abs_nonsingle correct use; grr | Theo de Raadt | |
1997-06-05 | fix DEBUG thing | Theo de Raadt | |
1997-06-05 | option | Theo de Raadt | |
1997-06-02 | EXEC_SCRIPT is not an option | Theo de Raadt | |
1997-06-02 | VNODEPAGER is not an option | Theo de Raadt | |
1997-06-02 | UCONSOLE is long dead | Theo de Raadt | |
1997-05-28 | KNF | Niklas Hallqvist | |
1997-05-20 | Add -s -e cd9660 hacks for making bootable alpha cd's. | Todd C. Miller | |
1997-05-14 | Don't need bpf or vnd -- shave a few bytes. | Todd C. Miller | |
1997-05-08 | comment out MFS, FIFO, and COMPAT_[0-9]+; add PCI ed | Todd C. Miller | |
1997-05-08 | Some trimming, add necessary stuff like ed, CD9660 & KERNFS | Niklas Hallqvist | |
1997-05-07 | axppci33-only GENERIC | Todd C. Miller | |
1997-05-06 | Add IP filter log into cdevsw | Niklas Hallqvist | |
1997-05-05 | Remove comment about an XXX that has been fixed. | Todd C. Miller | |
1997-05-05 | add ccd to GENERIC | Thomas Graichen | |
1997-05-05 | Updates from NetBSD (cgd): | Todd C. Miller | |
- seriously clean up makefiles. use libsa/libkern/libz as appropriate, and don't build the various sources into objs locally by specifying them directly in the Makefiles. - move the secondary bootstrap down (to 0x20004000), and add a HEAP_LIMIT so that we don't exhaust our bootstrap address space (when using the new, not yet checked in, memory allocator). - clean up installboot, deal with secondary bootstrap programs not on 'a' partition or 'a' partition not starting at 0. - add padding to structures in bbinfo.h for future expansion. Add a netbbinfo structure to allow netboot information to be hard-coded in network boot blocks, so that they can be made to work even on systems with firmware which doesn't support the new "ethernet address in boot device" convention. - move the sync() calls to the correct place in installboot.c - remove a kludge in disk.c which was breaking multiple opens/closes of the disk - allow netboot ethernet address to be hard-coded into binary so that machines with old firmware which doesn't pass it in the boot device can work. Assume that if the ethernet address isn't passed in, it uses the old (dain-bramaged) 'read' interface works on my 3000/300LX. - Add setnetbootinfo, a program to hard code an ethernet address into a network boot. - move an 'int debug;' into boot.c (it was the only diff between boot.c and netboot.c), and nuke netboot.c (using boot.c instead for net boot blocks). - add cd9660 file system ops to the file system ops table in filesystem.c - if a file name is given (i.e. BOOTED_FILE) is set, boot only that file, but if not then try to boot "bsd", "bsd.bak", "bsd.old", and "obsd" (in that order) until one is found or until the list of names is exhausted. - add support for reading gzipped kernels. - use strerror() to print errors, rather than just printing error numbers - if no disk label exists, fake one up - slightly relax the block size checks in bootxx.c; they were a bit to paranoid And local changes: - don't build a copy of libsa/libkern/libz for each boot prog, just build a single copy and use it for everything. | |||
1997-05-04 | Don't use head when we already use awk. | Todd C. Miller | |
1997-05-04 | Remove unnecesary call to head(1) that was giving me some grief. | Todd C. Miller | |
It is sufficient to have awk exit after printing the first line. | |||
1997-04-20 | Use ${ALPHA} instead of ../.. | Niklas Hallqvist | |
1997-04-20 | My new toy | Thorsten Lockert | |
1997-04-19 | Fix a compile warning | Thorsten Lockert | |
1997-04-19 | .depend needs cpuconf.c | Thorsten Lockert | |