aboutsummaryrefslogtreecommitdiff
path: root/sys/conf/Makefile.sparc64
Commit message (Collapse)AuthorAgeFilesLines
* Bump the config version to force people to upgrade their config(8)Poul-Henning Kamp2003-04-151-1/+1
| | | | | | | | so the fix for emitting multiple instances of .o files will prevent link errors on LINT. Notes: svn path=/head/; revision=113536
* Standardize handling of locore.[sS] etc. files.Ruslan Ermilov2003-02-281-12/+1
| | | | | | | Submitted by: jake, bde, ru Notes: svn path=/head/; revision=111684
* - Removed various cruft from before we had a hosted toolchain (!).Jake Burkholder2003-02-271-15/+0
| | | | | | | | - Moved special compiler flags to bsd.kern.mk so they get used for modules too. Notes: svn path=/head/; revision=111650
* Include majors.o in SYSTEM_OBJS to make sparc64 kernels link. This is aJake Burkholder2003-02-271-1/+1
| | | | | | | quick fix while I work on a better solution. Notes: svn path=/head/; revision=111642
* Moved most interrupt related code to a new file, interrupt.S.Jake Burkholder2002-09-281-2/+6
| | | | Notes: svn path=/head/; revision=104074
* *.s -> *.S.Jake Burkholder2002-07-311-3/+3
| | | | Notes: svn path=/head/; revision=101070
* Moved the rule for locore.o from kern.post.mk to Makefile.$ARCH.Jake Burkholder2002-07-311-0/+3
| | | | Notes: svn path=/head/; revision=101064
* Moved the setting of all profiling-related variables except the key oneBruce Evans2002-07-131-1/+1
| | | | | | | | | | | (PROFLEVEL) to kern.pre.mk so that it is easier to manage. Bumped config version to match. Moved the check for cputype being configured to a less bogus place in mkmakefile.c. Notes: svn path=/head/; revision=99923
* Remove a hack for using an external compiler if cross compiling.Jake Burkholder2002-05-261-21/+0
| | | | Notes: svn path=/head/; revision=97306
* MFP4. This slipped into a IFC(MFC) by PHK, but it could still be usefulDavid E. O'Brien2002-03-241-3/+18
| | | | | | | To commit it for real. Notes: svn path=/head/; revision=93108
* Remove all the custom toolchain knob tweaking.David E. O'Brien2002-03-151-13/+0
| | | | | | | | We are now using a native binutils, and you have to have CC=gcc in your /etc/make.conf to compile userland anyway. Notes: svn path=/head/; revision=92311
* Use the deo hosted toolchain by default.Jake Burkholder2002-03-131-10/+14
| | | | Notes: svn path=/head/; revision=92197
* Commit some infrastructure for turning on -Werror for kernel compiles.Peter Wemm2002-02-201-1/+1
| | | | | | | | | It doesn't actually do it yet though. This adds a flag to config so that we can exclude certain vendor files from this even when the rest of the kernel has it on. make -DNO_WERROR would also bypass all of it. Notes: svn path=/head/; revision=91002
* Add -mcmodel=medlow to COPTS. This is needed to build working kernels.Thomas Moestl2001-12-241-0/+3
| | | | Notes: svn path=/head/; revision=88460
* Proper fix for old config setting maxusers to 8.Peter Wemm2001-12-141-1/+1
| | | | Notes: svn path=/head/; revision=87860
* Change to using my custom sparc64 binutils.David E. O'Brien2001-11-281-8/+10
| | | | Notes: svn path=/head/; revision=87022
* Move kern.post.mk to last line, now that it appears safeWarner Losh2001-11-111-2/+2
| | | | Notes: svn path=/head/; revision=86276
* Factor the common parts of the Makefile.foo files. This introduces twoWarner Losh2001-11-021-290/+6
| | | | | | | | | | | | | | new files: kern.pre.mk, which contains most of the definitions, and kern.post.mk, which contains most of the rules. I've tested this on i386 and pc98. I have had feedback on the sparc64 port, but no reports from anybody on alpha, ia64 or powerpc. I appologize in advance if I've broken you. Reviewed by: jake, jhb, arch@ Notes: svn path=/head/; revision=85909
* Only overwrite ${DESTDIR}${KODIR}.old/${KERNEL_KO} if we haven'tBrian Somers2001-11-011-7/+14
| | | | | | | | | | | booted from it when doing an installkernel. Only change kern.bootfile from ${DESTDIR}${KODIR}/${KERNEL_KO} to ${DESTDIR}${KODIR}.old/${KERNEL_KO}, and only when we're renaming a booted ${DESTDIR}${KODIR}/${KERNEL_KO} kernel. Notes: svn path=/head/; revision=85797
* Support the "install.debug" and "reinstall.debug" targets for kernel modules.Dag-Erling Smørgrav2001-10-271-3/+3
| | | | | | | | | | | | Small tweaks to kldxref may be necessary to avoid the surprising (but harm- less) behaviour of 'kldload foo' loading foo.ko.debug instead of foo.ko if it is present in the kernel directory. Approved by: a week of silence on -arch MFC after: 2 weeks Notes: svn path=/head/; revision=85570
* Finish the asbestos suited move of $mach/conf/*.$mach to conf/*.$mach.Ruslan Ermilov2001-10-261-1/+1
| | | | | | | Fix some more typos. Notes: svn path=/head/; revision=85532
* Make override of nm consistent across all platforms and sort the overrides.Mark Peek2001-10-191-2/+3
| | | | | | | Reminded by: obrien Notes: svn path=/head/; revision=85198
* Change kern.bootfile when mv'ing the kernelBrian Somers2001-10-171-0/+2
| | | | | | | Not tested by: brian Notes: svn path=/head/; revision=85073
* Enable hardwiring of things like tunables from embedded enironmentsPeter Wemm2001-08-271-3/+6
| | | | | | | that do not start from loader(8). Notes: svn path=/head/; revision=82393
* In order to bring about the end of the universe, delete the lines:Peter Wemm2001-08-151-2/+0
| | | | | | | # DO NOT DELETE THIS LINE -- make depend uses it Notes: svn path=/head/; revision=81660
* Add code model medlow to cflags and move the kernel load address fromJake Burkholder2001-08-061-3/+6
| | | | | | | | | just before the memory hole to 4 megs. Special case building exception.s like locore.s, it needs to at the beginning so the branches out from the trap table don't overflow. Notes: svn path=/head/; revision=81173
* Add a Makefile, ldscript, and config magic for sparc64. This is tailoredJake Burkholder2001-08-031-0/+348
to build with a cross compiler alongside the standard compiler; it would be more desirable to build in a chroot. Notes: svn path=/head/; revision=81084