History log of /netbsd/sys/arch/evbarm/stand/gzboot/gzboot.c (Results 1 – 16 of 16)
Revision Date Author Comments
# c32f5b1d 12-Feb-2020 thorpej <thorpej@NetBSD.org>

Allow a configuration to specify an arbitrary address where the
compressed kernel image is located, in the event it can't be appended
to or embedded within the gzboot binary itself.


# 9adfae59 22-Jan-2011 joerg <joerg@NetBSD.org>

Drop bootprog_maker (formerly enabled by -M) and bootprog_date (formerly
disabled by -D) from the output of newvers_stand.sh. Change -D to the
inverted logic, so that it adds the date to bootprog_re

Drop bootprog_maker (formerly enabled by -M) and bootprog_date (formerly
disabled by -D) from the output of newvers_stand.sh. Change -D to the
inverted logic, so that it adds the date to bootprog_rev in ().

Change all platforms accordingly. -D is added if MKREPRO is not yes and
wasn't present before. Platforms that didn't use -D don't depend on
MKREPRO now either.

show more ...


# 62cf489d 26-Oct-2009 cegger <cegger@NetBSD.org>

kill extra whitespaces
reviewed by tsutsui@


# e2cb8590 18-Mar-2009 cegger <cegger@NetBSD.org>

bcopy -> memcpy


# c363a9cb 18-Mar-2009 cegger <cegger@NetBSD.org>

bzero -> memset


# 606bb2ca 25-Jan-2006 christos <christos@NetBSD.org>

free -> dealloc
unsigned -> size_t for alloc/dealloc


# b1bcd0ff 16-Jan-2006 he <he@NetBSD.org>

The new zlib uses HEAP_SIZE, so instead use BOARD_HEAP_SIZE as the
symbol to use here. Also adapt to the new zlib with the changed name
for the header file.


# 95e1ffb1 11-Dec-2005 christos <christos@NetBSD.org>

merge ktrace-lwp.


# cf8b697c 24-Mar-2004 drochner <drochner@NetBSD.org>

remove license clauses 3 and 4 from my cpoyright notices


# 04f47aa1 29-Apr-2003 thorpej <thorpej@NetBSD.org>

Allow MAXIMAGESIZE to be set to 0. For gzboot's that are linked
for flash, this allows us to basically do:

cat gzboot.bin netbsd.bin.gz > gzimg

to produce the bootable image.


# a7a582e3 17-Apr-2002 thorpej <thorpej@NetBSD.org>

* Call board_init() rather than mem_init() (board_init() will take
care of that for us).
* Call board_fini() right before jumping to the kernel entry point.


# d819468d 24-Feb-2002 thorpej <thorpej@NetBSD.org>

Improve zlib error reporting.


# 0780eaaa 23-Feb-2002 thorpej <thorpej@NetBSD.org>

Use bcopy() and bzero(), since the rest of libsa does. This means
we don't have to pull in memset() and memcpy() from libsa.


# 59f1dfe1 23-Feb-2002 thorpej <thorpej@NetBSD.org>

Don't need to provide zcalloc() and zcfree(); there are such routines
in libz.


# 87de164a 23-Feb-2002 thorpej <thorpej@NetBSD.org>

Fix a silly bug in the propellor spinning code.


# 0fac1c42 23-Feb-2002 thorpej <thorpej@NetBSD.org>

gzboot -- boot a gzip'd kernel image. This is useful for booting
compressed kernel images from flash.

This needs more work, but is a good first-pass.