NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

PR/40315 CVS commit: [netbsd-5] src



The following reply was made to PR port-atari/40315; it has been noted by GNATS.

From: Manuel Bouyer <bouyer%netbsd.org@localhost>
To: gnats-bugs%gnats.NetBSD.org@localhost
Cc: 
Subject: PR/40315 CVS commit: [netbsd-5] src
Date: Fri, 16 Jan 2009 22:57:33 +0000 (UTC)

 Module Name:   src
 Committed By:  bouyer
 Date:          Fri Jan 16 22:57:33 UTC 2009
 
 Modified Files:
        src/distrib/sets/lists/base [netbsd-5]: md.atari
        src/distrib/utils/sysinst/arch/atari [netbsd-5]: md.c
        src/sys/arch/atari/stand/bootxx [netbsd-5]: Makefile.bootxx bootxx.c
        src/sys/arch/atari/stand/bootxxx [netbsd-5]: Makefile.bootxxx bootxxx.c
        src/sys/arch/atari/stand/installboot [netbsd-5]: disklabel.c
            installboot.c installboot.h
        src/sys/arch/atari/stand/libsa [netbsd-5]: Makefile
        src/sys/arch/atari/stand/tostools/libtos [netbsd-5]: aout.c elf.c
            libtos.h sysinfo.c
        src/sys/arch/atari/stand/xxboot [netbsd-5]: Makefile.xxboot
 Added Files:
        src/sys/arch/atari/stand [netbsd-5]: Makefile.booters
        src/sys/arch/atari/stand/bootxx [netbsd-5]: start.S
        src/sys/arch/atari/stand/bootxxx [netbsd-5]: start.S
 Removed Files:
        src/sys/arch/atari/stand [netbsd-5]: Makefile.inc
 
 Log Message:
 Pull up following revision(s) (requested by tsutsui in ticket #274):
        sys/arch/atari/stand/xxboot/Makefile.xxboot: revision 1.5
        sys/arch/atari/stand/tostools/libtos/libtos.h: revision 1.5
        sys/arch/atari/stand/installboot/disklabel.c: revision 1.3
        sys/arch/atari/stand/bootxxx/Makefile.bootxxx: revision 1.4, 1.5
        sys/arch/atari/stand/libsa/Makefile: revision 1.28
        sys/arch/atari/stand/bootxx/start.S: revision 1.1
        distrib/utils/sysinst/arch/atari/md.c: revision 1.23
        sys/arch/atari/stand/bootxx/Makefile.bootxx: revision 1.8
        sys/arch/atari/stand/tostools/libtos/aout.c: revision 1.11
        sys/arch/atari/stand/installboot/installboot.h: revision 1.9
        sys/arch/atari/stand/bootxxx/bootxxx.c: revision 1.4
        sys/arch/atari/stand/Makefile.inc: file removal
        distrib/sets/lists/base/md.atari: revision 1.50
        sys/arch/atari/stand/Makefile.booters: revision 1.1
        sys/arch/atari/stand/bootxx/bootxx.c: revision 1.13
        sys/arch/atari/stand/installboot/installboot.c: revision 1.22
        sys/arch/atari/stand/tostools/libtos/elf.c: revision 1.9
        sys/arch/atari/stand/tostools/libtos/sysinfo.c: revision 1.8
        sys/arch/atari/stand/bootxxx/start.S: revision 1.1
 Fix PR port-atari/40315: Bootloader fails on Atari TT030
  Add asm sources which provide a fixed entry point for raw bootxx and bootxxx
  because modern aggressive gcc4 may reorder functions in the same source
  and the first function in a C source won't always appear at the beginning
  in its object.
 Also overhaul various files in the stand directory:
 - rename stand/Makefile.inc to stand/Makefile.booters and
   explicitly include it from each Makefile because the stand
   directory contains non standalone programs like installboot and
   Makefile.inc will be included implicitly from all Makefiles in SUBDIRs
 - put more common options into Makefile.booters so that
   all boot programs use proper options (-Os etc.)
 - make standalone boot programs compile without installed ${DESTDIR}:
   - create machine and m68k symlinks in ${.OBJDIR} in all boot programs
   - set appropriate make environments to suppress errors and warnings
   - <string.h> isn't there in _STANDALONE case
   - put #ifdef TOSTOOLS (looks equivarent with !_STANDALONE)
     to some files in stand/tostools
   - use ${LD} ${LINKFLAGS} rather than ${CC} ${LDFLAGS}
 - create raw binaries on ${PROG} target rather than on beforeinstall
   and stop weird renaming on beforeinstall and afterinstall
 - print proper error message if bootxx size is larger than limit
 - create ${DESTDIR}/usr/mdec/{milan,std} directories on beforeinstall
   in all boot programs
   (XXX: how can we put MD /usr/mdec/foo directories into src/etc/mtree?)
 - prototype warnsfy
 - cleanup Makefiles for readablity and remove unnecessary rules
 - no need to use daddr_t in installboot because the AHDI label doesn't
   support 64 bit block numbers
 Tested by David Ross (PR submitter) on port-atari, and
 finally NetBSD/atari on TT030 is now fully functional.
 Should be pulled up to netbsd-4 (where gcc4 was initially imported)
 and netbsd-5.
 Don't install built boot.atari loaders into / of DESTDIR because
 there are two variants of boot.atari per machine types (std or milan)
 and they should be selected and copied from /usr/mdec/{std,milan} dirs
 to /targetroot during installation.
 Problem on default installation with sysinst was reported by David Ross.
 Remove /boot.atari, which is no longer installed during build
 and removed from base.tgz.
 Note we must not mark this obsolete because this tertiary bootloader
 will be copied into / during installation and it shouldn't be removed
 by postinstall(8).
 Before installboot(8), check running machine types (milan or others)
 via sysctl(3) and copy appropriate tertiary boot.atari loader
 from /usr/mdec/{std,milan} into targetroot.
 Full fresh installations of 5.0_BETA and 4.0_STABLE with the same change
 have been tested by David Ross on port-atari.
 Fixes the final portion of PR port-atari/40315, and
 pullup requests to both netbsd-4 and netbsd-5 will be sent shortly.
 
 
 To generate a diff of this commit:
 cvs rdiff -r1.47 -r1.47.44.1 src/distrib/sets/lists/base/md.atari
 cvs rdiff -r1.22 -r1.22.2.1 src/distrib/utils/sysinst/arch/atari/md.c
 cvs rdiff -r0 -r1.1.4.2 src/sys/arch/atari/stand/Makefile.booters
 cvs rdiff -r1.2 -r0 src/sys/arch/atari/stand/Makefile.inc
 cvs rdiff -r1.7 -r1.7.4.1 src/sys/arch/atari/stand/bootxx/Makefile.bootxx
 cvs rdiff -r1.12 -r1.12.88.1 src/sys/arch/atari/stand/bootxx/bootxx.c
 cvs rdiff -r0 -r1.1.4.2 src/sys/arch/atari/stand/bootxx/start.S
 cvs rdiff -r1.3 -r1.3.88.1 src/sys/arch/atari/stand/bootxxx/Makefile.bootxxx \
     src/sys/arch/atari/stand/bootxxx/bootxxx.c
 cvs rdiff -r0 -r1.1.4.2 src/sys/arch/atari/stand/bootxxx/start.S
 cvs rdiff -r1.2 -r1.2.164.1 src/sys/arch/atari/stand/installboot/disklabel.c
 cvs rdiff -r1.20.88.1 -r1.20.88.2 \
     src/sys/arch/atari/stand/installboot/installboot.c
 cvs rdiff -r1.8 -r1.8.88.1 src/sys/arch/atari/stand/installboot/installboot.h
 cvs rdiff -r1.27 -r1.27.88.1 src/sys/arch/atari/stand/libsa/Makefile
 cvs rdiff -r1.10 -r1.10.10.1 src/sys/arch/atari/stand/tostools/libtos/aout.c
 cvs rdiff -r1.8 -r1.8.10.1 src/sys/arch/atari/stand/tostools/libtos/elf.c
 cvs rdiff -r1.4 -r1.4.132.1 src/sys/arch/atari/stand/tostools/libtos/libtos.h
 cvs rdiff -r1.7 -r1.7.10.1 src/sys/arch/atari/stand/tostools/libtos/sysinfo.c
 cvs rdiff -r1.4 -r1.4.88.1 src/sys/arch/atari/stand/xxboot/Makefile.xxboot
 
 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.
 


Home | Main Index | Thread Index | Old Index