Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (4m)  netbsd-8 (5d)  netbsd-10 (5d)  netbsd-9 (11d)  thorpej-ifq (175d)  thorpej-altq-separation (177d) 

2024-05-09 20:26:49 UTC Now

2013-08-28 16:20:38 UTC MAIN commitmail json YAML

Fix libkern's prototype for explicit_memset.

(riastradh)

2013-08-28 15:46:23 UTC MAIN commitmail json YAML

2013-08-28 15:39:30 UTC MAIN commitmail json YAML

Added slp@ to NetBSD Developers list.

(slp)

2013-08-28 15:24:41 UTC MAIN commitmail json YAML

Fix sense of consttime_memequal and update all callers.

Now it returns true (nonzero) to mean equal and false (zero) to mean
inequal, as the name suggests.

As promised on tech-userlevel back in June:

https://mail-index.netbsd.org/tech-userlevel/2013/06/24/msg007843.html

(riastradh)

2013-08-28 15:21:49 UTC rmind-smpnet commitmail json YAML

Checkpoint work in progress:
- Initial split of the protocol user-request method into the following
  methods: pr_attach, pr_detach and pr_generic for old the pr_usrreq.
- Adjust socreate(9) and sonewconn(9) to call pr_attach without the
  socket lock held (as a preparation for the locking scheme adjustment).
- Adjust all pr_attach routines to assert that PCB is not set.
- Sprinkle various comments, document some routines and their locking.
- Remove M_PCB, replace with kmem(9).
- Fix few bugs spotted on the way.

(rmind)

2013-08-28 12:50:18 UTC MAIN commitmail json YAML

Tighten initialization of rnd softints.

- Do rnd_init_softint as early as possible in main, after configure2,
  and before networking is initialized.

- Initialize the rnd_wakeup softint in rnd_init_softint, not lazily in
  rnd_schedule_wakeup.

ok tls

(riastradh)

2013-08-28 08:05:21 UTC MAIN commitmail json YAML

get rid of PATH_MAX.

(christos)

2013-08-28 07:34:13 UTC MAIN commitmail json YAML

sqlite-3.8.0 out

(wiz)

2013-08-27 19:30:10 UTC MAIN commitmail json YAML

Back out the recent rnd stop-gap/stop-gap/stop-gap measures.

This reverts

sys/dev/rnd_private.h -> r1.1
sys/kern/init_main.c -> r1.450
sys/kern/kern_rndq.c -> r1.14
sys/kern/kern_rndsink.c -> r1.2

Parts of these changes will be added back, and the rndsource
callbacks will be fixed to avoid the lock recursion bug that
motivated the stop-gaps in the first place.

ok tls

(riastradh)

2013-08-27 18:29:29 UTC MAIN commitmail json YAML

Remove outdated comment.

(joerg)

2013-08-27 14:01:35 UTC MAIN commitmail json YAML

Schedule wakeups asynchronously in rnd_extract_data.

Otherwise, rndsink_request takes rndsinks_lock and calls
rnd_extract_data, which synchronously calls rndsinks_distribute,
which takes rndsinks_lock -> boom.

This is a stop-gap on a stop-gap on a stop-gap; we really ought to
back out all of these stop-gaps, make bcm2835_rng call rnd_add_data
asynchronously to work around the original symptom, and design a real
solution when we have time to sort this mess out properly.

(riastradh)

2013-08-27 13:12:29 UTC MAIN commitmail json YAML

sprinkle #if NPSYCHO > 0
now this builds again on kernels without psycho

(macallan)

2013-08-27 13:11:12 UTC MAIN commitmail json YAML

psycho needs-flag now
while there, ffb doesn't need rasops8

(macallan)

2013-08-27 09:56:12 UTC MAIN commitmail json YAML

move the host file getbyname and getbyaddr functions to sethostent.c so
that they are in a separate file from the dns ones in order for libhack
to use them.

(christos)

2013-08-27 09:53:33 UTC MAIN commitmail json YAML

avoid copying most of libc (except gethostent_r, which unfortunately
adds a resolver dependency) by callling the internal nsswitch functions.

(christos)

2013-08-27 06:41:05 UTC MAIN commitmail json YAML

2013-08-27 06:39:43 UTC MAIN commitmail json YAML

Support R_ARM_REL32 and R_ARM_PREL31.

ok matt.

(skrll)

2013-08-27 03:41:59 UTC MAIN commitmail json YAML

2013-08-26 23:41:24 UTC MAIN commitmail json YAML

Temporary fix for previous: avoid recursion through rnd_wakeup_readers()
when entropy first becomes available.

(tls)

2013-08-26 22:15:51 UTC MAIN commitmail json YAML

Change the default for MKLINT to no

(matt)

2013-08-26 15:31:45 UTC MAIN commitmail json YAML

Don't include <arm/arm32/pte.h> and <arm/pmap.h>
Use the values from getassym.h

(matt)

2013-08-26 15:31:06 UTC MAIN commitmail json YAML

2013-08-26 14:24:22 UTC MAIN commitmail json YAML

Even though both gas and ld support .cfi_personality, gcc fails to emit
them so we get DT_TEXTREL problems.
So if pic && SHARED, we force EH_FRAME to be writeable (which is what would
happen if .cfi_personality was not supported).

(matt)

2013-08-26 14:20:53 UTC MAIN commitmail json YAML

MIPS wants a read/write eh_frame.

(matt)

2013-08-26 12:24:10 UTC MAIN commitmail json YAML

Fix a comment and a few minor optimizations:

* elf_check_header() already ensures eh.e_phnum > MAXPHNUM, so do not
  test it again at the call site
* is_dyn == true implies a successfull call to elf_check_header(eh, ET_DYN),
  so no need to call elf_check_header(eh, ET_EXEC)

From Maxime Villard.

(martin)

2013-08-26 07:14:59 UTC MAIN commitmail json YAML

Bump the ramdisk image size so that the contents fits again.

(he)

2013-08-26 04:06:25 UTC netbsd-6 commitmail json YAML

2013-08-26 04:00:16 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #652):
sys/dev/mii/brgphy.c                            1.60
sys/dev/pci/if_bge.c                            1.202
sys/dev/pci/if_bgereg.h                        1.57
Add support for BCM57762 and BCM57765, found in Apple's Thunderbolt
to Gigabit Ethernet adapter.  PR kern/46961.

(msaitoh)

2013-08-26 01:08:20 UTC MAIN commitmail json YAML

Initial pieces and skeleton for a lint replacement.

All I've actually written so far is about the first third of the
preprocessor and some of the support code, but based on the "commit
early and often" rule I'm going to commit what I have now.

(dholland)

2013-08-25 21:12:56 UTC MAIN commitmail json YAML

Attempt to resolve locking issues at kernel startup on platforms with
hardware RNGs using the polling mode of operation:

1) Initialize the rng subsystem soft interrupts as early in kernel startup
  as seems safe (we have no MI guarantee that softints are working at all
  until configure2() returns, AFAICT).

  This should have the rnd subsystem able to process events via softint
  before the network subsystem (a notorious early user of entropy) starts.

2) Remove the shortcut calls to rnd_process_events() from
  rnd_schedule_process(), with the result that until the softint is installed
  rnd_process_events() is a NOP.

3) Directly call rnd_process_events() in rnd_extract_data(),
  rnd_maybe_extract(), and rnd_init_softint().  This should suck up any
  samples actually collected as early as possible.

(tls)

2013-08-25 17:08:41 UTC MAIN commitmail json YAML

Fix return with mutex held bug in get routine -- thanks Jared.

(tls)

2013-08-25 14:20:30 UTC MAIN commitmail json YAML

Add LIBISPRIVATE?=yes

(matt)

2013-08-25 14:13:47 UTC MAIN commitmail json YAML

Add the blockingnr determination for the -rom versions

(reinoud)

2013-08-25 08:46:34 UTC MAIN commitmail json YAML

provide the symbols sethostent.c in libc is missing.

(christos)

2013-08-25 07:08:37 UTC MAIN commitmail json YAML

Move mvspi defines into sys/dev/marvell/files.discovery.

(kiyohara)

2013-08-25 06:16:19 UTC MAIN commitmail json YAML

Use UE_GET_XFERTYPE. No functional change.

(skrll)

2013-08-25 06:15:06 UTC MAIN commitmail json YAML

2013-08-25 03:08:56 UTC MAIN commitmail json YAML

add #define __HAVE_MD_SOFTINT_TRIGGER to <vax/types.h>
Only define a function prototype for softint_trigger
if __HAVE_MD_SOFTINT_TRIGGER is undefined.

(matt)

2013-08-24 15:42:29 UTC MAIN commitmail json YAML

2013-08-24 08:21:55 UTC MAIN commitmail json YAML

Fix typo in DPRINTF

(skrll)

2013-08-24 07:12:13 UTC MAIN commitmail json YAML

2013-08-24 00:51:48 UTC MAIN commitmail json YAML

2013-08-23 18:11:47 UTC MAIN commitmail json YAML

Deal with lack of VFP.

(matt)

2013-08-23 17:41:03 UTC MAIN commitmail json YAML

Add IEEE 754 versions of __float{,}disf which use no floating point.

(matt)

2013-08-23 16:50:25 UTC MAIN commitmail json YAML

2013-08-23 16:49:53 UTC MAIN commitmail json YAML

PR/48150: Noriyuki Koizumi: Add support for Intel Centrino Advanced-N 6235
Wi-Fi controller

(christos)

2013-08-23 16:01:35 UTC MAIN commitmail json YAML

Add __floatunsi{sd}f for IEEE754.
Unlike the quad versions, these don't use floating point.

(matt)

2013-08-23 14:39:50 UTC MAIN commitmail json YAML

Make use of vfp_used_p condition on FPU_VFP

(matt)

2013-08-23 10:37:03 UTC MAIN commitmail json YAML

- npf_cache_ip: re-fetch IPv6 header since nbufs might have been reallocated.
- npf_cache_all: clear NBUF_DATAREF_RESET since npf_cache_ip() handles it.

(rmind)

2013-08-23 07:15:08 UTC MAIN commitmail json YAML

When decide to coalesce segments, if the d_cache isn't coherent also make
sure the VA is contiguous as well.

(matt)

2013-08-23 06:31:49 UTC MAIN commitmail json YAML

2013-08-23 06:31:09 UTC MAIN commitmail json YAML

add PUFFS/putter
add vnd
add atapibus
disable options DEBUG

(matt)

2013-08-23 06:25:02 UTC MAIN commitmail json YAML

Add a SYSTEM_DEP for the ramdisk on INSTALL kernels.

(matt)

2013-08-23 06:24:21 UTC MAIN commitmail json YAML

Avoid a few instructions since we know CURLWP is in %r13

(matt)

2013-08-23 06:22:32 UTC MAIN commitmail json YAML

Simplify since we know curlwp is in %r13

(matt)

2013-08-23 06:21:33 UTC MAIN commitmail json YAML

Get rid of MDLWP_USED{FPU,VEC}

(matt)

2013-08-23 06:19:46 UTC MAIN commitmail json YAML

2013-08-23 06:18:14 UTC MAIN commitmail json YAML

Fix kern_softint.c errors (tested with WALNUT & EV64260)

(matt)

2013-08-23 05:22:01 UTC MAIN commitmail json YAML

2013-08-23 05:02:47 UTC MAIN commitmail json YAML

2013-08-23 00:22:16 UTC MAIN commitmail json YAML

If we want unwind tables, defined __UNWIND_TABLES__ 1

(matt)

2013-08-22 20:03:15 UTC MAIN commitmail json YAML

Re-add -fno-unwind-tables, otherwise eabi kernels fail to boot (bug in
objcopy?)

(martin)

2013-08-22 20:00:43 UTC MAIN commitmail json YAML

Check that the xfer we are about to abort didn't finish yet since abort
methods fail in this case (at least ehci's one).

(aymeric)

2013-08-22 19:50:55 UTC MAIN commitmail json YAML

-extend the pcu(9) API by a function which saves all context on the
current CPU, and use it if a CPU is taken offline
-add a bool argument to pcu_discard which tells whether the internal
"LWP has used the coprocessor" flag should be set or reset. The flag
is reported by pcu_used_p(). If set, future accesses should use the
state stored in the PCB. If reset, it should be reset to default.
The former case is useful for setmcontext().
With that, it should not be necessary anymore to manage the "FPU used"
state by an additional MD variable.

approved by matt

(drochner)

2013-08-22 19:25:00 UTC MAIN commitmail json YAML

2013-08-22 17:08:43 UTC MAIN commitmail json YAML

fix typo (Sergey Kandaurov)

(christos)

2013-08-22 16:03:31 UTC MAIN commitmail json YAML

2013-08-22 15:53:05 UTC MAIN commitmail json YAML

2013-08-22 10:04:28 UTC MAIN commitmail json YAML

2013-08-22 10:00:43 UTC MAIN commitmail json YAML

Make timecounter "tick-counter" mandatory.

(nakayama)

2013-08-22 09:57:31 UTC MAIN commitmail json YAML

Handle US-IIe's STICK counter as 64-bit explicitly to fix a hang at
boot after about 6.5 minutes on 32-bit kernel.

(nakayama)

2013-08-22 08:24:30 UTC MAIN commitmail json YAML

s_nexttoward.c does not make sense compiling for 32 bit sparc (double ==
long double), so ifdef it out in the sparc64 compat library build. I hope
the nextafter alias is set up correctly (where?) - and someone please
suggest a better way for this if clause.

(martin)

2013-08-22 07:17:11 UTC MAIN commitmail json YAML

Remove PFIL_HOOKS references, code was unifdefed.
From David H. Gutteridge in PR 48146.

Bump date.

(wiz)

2013-08-22 07:14:38 UTC MAIN commitmail json YAML

Re-add "/usr/include/gcc-4.1". It is only obsolete on ports that use
GCC 4.5.x. Explanation provided by Thomas Klausner in private e-mail.

(tron)

2013-08-22 06:37:29 UTC MAIN commitmail json YAML

minor whitespace differences - no functional change

(agc)

2013-08-22 06:32:29 UTC MAIN commitmail json YAML

minor changes to inline one-line functions, better names for definitions,
use sizeof() to bound memset operations, rather than hardcoding lengths.

no functional changes.

(agc)

2013-08-22 01:08:10 UTC MAIN commitmail json YAML

First pass at isolating userland-only code.

Also, only expose a regular expression if we're not in kernel code

(agc)

2013-08-22 00:26:23 UTC MAIN commitmail json YAML

Add m68000/coldfire.
Add evbcf.

(matt)

2013-08-22 00:25:35 UTC MAIN commitmail json YAML

Use MBR compatible partitioning

(matt)

2013-08-22 00:17:48 UTC MAIN commitmail json YAML

2013-08-22 00:16:54 UTC MAIN commitmail json YAML

2013-08-22 00:13:00 UTC MAIN commitmail json YAML

Add a missing KLINK_MACHINE= i386

(matt)

2013-08-21 22:52:28 UTC MAIN commitmail json YAML

4th time's a charm (I hope). Make sure that we pick up the kernel path passed to
mkimage command line, and not the default.

(jmcneill)

2013-08-21 21:17:37 UTC MAIN commitmail json YAML

Postfix 2.9.7 was imported.

(tron)

2013-08-21 21:11:30 UTC MAIN commitmail json YAML

When compiling use @PLTPC to generate PLT relocs for NetBSD.
When building libgcc_s.so for m68k, this gets rid of
m68k--netbsdelf/4.5.4/../../../../m68k--netbsdelf/bin/ld: warning: creating a DT_TEXTREL in a shared object.

(matt)

2013-08-21 21:05:29 UTC MAIN commitmail json YAML

passes WARNS=5, don't set it to 4.

(dholland)

2013-08-21 20:52:45 UTC MAIN commitmail json YAML

Remove more obsolete directories:
- /usr/include/gcc-4.1
- /usr/share/locale/no_NO.ISO8859-1
- /usr/share/locale/no_NO.ISO8859-1/LC_MESSAGES

(tron)

2013-08-21 20:51:57 UTC MAIN commitmail json YAML

"/usr/share/locale/ko_KR.UTF-8/LC_CTYPE" is not obsolete. It gets built
and installed. Correct the set entry to reflect that.

(tron)

2013-08-21 20:22:35 UTC MAIN commitmail json YAML

Remove obsolete directories "/usr/share/locale/no_NO.ISO8859-15" and
"/usr/share/locale/no_NO.ISO8859-15/LC_MESSAGES".

(tron)

2013-08-21 20:12:31 UTC MAIN commitmail json YAML

2013-08-21 19:48:35 UTC MAIN commitmail json YAML

Postfix 2.9.7 and 2.10.1 are out.

(tron)

2013-08-21 18:11:31 UTC MAIN commitmail json YAML

Use usbd_errstr instead of printing non-errno(2) error code.

(jakllsch)

2013-08-21 18:08:29 UTC MAIN commitmail json YAML

We already have a config rule for the eventual core of xhci(4); may as
well have the PCI attachment rule as well.

(jakllsch)

2013-08-21 17:59:40 UTC MAIN commitmail json YAML

Use NULL instead of 0 as appropriate.

(jakllsch)

2013-08-21 17:52:10 UTC MAIN commitmail json YAML

swap positions of ehci_root_ctrl_done and ehci_root_intr_done so that they
are grouped with their respective transfer types

(jakllsch)

2013-08-21 17:25:58 UTC MAIN commitmail json YAML

Add UDESC_SSHUB and UDPROTO_SSHUB constants from USB 3.0.

(jakllsch)

2013-08-21 17:15:26 UTC MAIN commitmail json YAML

2013-08-21 16:37:31 UTC MAIN commitmail json YAML

Use the default mp definition tables for ancient machines. From Felix
Deichmann.

(christos)

2013-08-21 15:26:44 UTC MAIN commitmail json YAML

Change rule for x86 link to not be x86 dependent

(matt)

2013-08-21 15:24:27 UTC MAIN commitmail json YAML

2013-08-21 13:06:01 UTC MAIN commitmail json YAML

Add nexttoward, nearbyint and rintl for sparc64

(martin)

2013-08-21 13:04:44 UTC MAIN commitmail json YAML

Add support for the long double format used on sparc64

(martin)

2013-08-21 13:03:56 UTC MAIN commitmail json YAML

Add support for archs with LDBL_IMPLICIT_NBIT

(martin)

2013-08-21 08:30:50 UTC MAIN commitmail json YAML

Use LIBISPRIVATE?= yes

(matt)

2013-08-21 08:30:18 UTC MAIN commitmail json YAML

2013-08-21 08:17:34 UTC MAIN commitmail json YAML

2013-08-21 08:15:19 UTC MAIN commitmail json YAML

2013-08-21 08:04:50 UTC MAIN commitmail json YAML

Use <bsd.klinks.mk>
Use ${_MKTARGET_*}
Use correct arguments to ${AR}
Fix entry symbol.

(matt)

2013-08-21 07:27:01 UTC MAIN commitmail json YAML

2013-08-21 07:22:27 UTC MAIN commitmail json YAML

2013-08-21 07:17:08 UTC MAIN commitmail json YAML

2013-08-21 07:13:51 UTC MAIN commitmail json YAML

Use <bsd.klinks.mk>
Add missing ${_MKTARGET_LINK}

(matt)

2013-08-21 07:08:30 UTC MAIN commitmail json YAML

2013-08-21 07:04:38 UTC MAIN commitmail json YAML

2013-08-21 06:58:58 UTC MAIN commitmail json YAML

2013-08-21 06:56:14 UTC MAIN commitmail json YAML

Use <bsd.klinks.mk>
Add ${_MKTARGET_LINK}

(matt)

2013-08-21 06:53:10 UTC MAIN commitmail json YAML

2013-08-21 06:49:45 UTC MAIN commitmail json YAML

2013-08-21 06:46:26 UTC MAIN commitmail json YAML

Use <bsd.klinks.mk>
Add ${_MKTARGET_LINK}

(matt)

2013-08-21 06:44:02 UTC MAIN commitmail json YAML

2013-08-21 06:41:52 UTC MAIN commitmail json YAML

2013-08-21 06:27:54 UTC MAIN commitmail json YAML

2013-08-21 06:24:42 UTC MAIN commitmail json YAML

2013-08-21 06:20:49 UTC MAIN commitmail json YAML

2013-08-21 06:15:41 UTC MAIN commitmail json YAML

2013-08-21 06:07:26 UTC MAIN commitmail json YAML

2013-08-21 05:59:14 UTC MAIN commitmail json YAML

Use <bsd.klinks.mk>
DBG=-Os (instead of blank)

(matt)

2013-08-21 05:55:26 UTC MAIN commitmail json YAML

2013-08-21 05:50:14 UTC MAIN commitmail json YAML

Simplify by using LIBISPRIVATE?= yes

(matt)

2013-08-21 05:45:16 UTC MAIN commitmail json YAML

Use <bsd.klinks.mk>

(matt)

2013-08-21 03:18:05 UTC MAIN commitmail json YAML

Don't build compat versions libkern.a

(matt)

2013-08-21 03:09:39 UTC MAIN commitmail json YAML

2013-08-21 03:09:08 UTC MAIN commitmail json YAML

If not earmv7, use -marm on all assembly files

(matt)

2013-08-21 03:05:35 UTC MAIN commitmail json YAML

Add -marm to those sources who aren't thumb friendly.

(matt)

2013-08-21 03:03:02 UTC MAIN commitmail json YAML

2013-08-21 03:00:56 UTC MAIN commitmail json YAML

2013-08-20 23:19:28 UTC MAIN commitmail json YAML

Disable -w for lint again. It clearly creates more issues than it ever
solved.

(joerg)

2013-08-20 22:44:38 UTC MAIN commitmail json YAML

Whitespace and markup improvements.
Bump date for previous.

(wiz)

2013-08-20 22:07:44 UTC MAIN commitmail json YAML

Add Edgar Fuss's patch to pam_deny, to allow users to be able to change their
LDAP password with "passwd".

(perseant)

2013-08-20 21:43:03 UTC MAIN commitmail json YAML

Some assembly files need to compiled -marm since they are Thumb compatible.

(matt)

2013-08-20 21:37:39 UTC MAIN commitmail json YAML

write of final NUL in strlcpy doesn't need to be post-incremented

(matt)

2013-08-20 21:35:24 UTC MAIN commitmail json YAML

If compiling standalone with Thumb, use the thumb version instead of the
naive version.

(matt)

2013-08-20 21:32:50 UTC MAIN commitmail json YAML

Thumb versions of strcpy/strlcpy/strncpy

(matt)

2013-08-20 21:08:54 UTC MAIN commitmail json YAML

strlcat_arm.S is smaller than strlcat_naive.S so always use it.

(matt)

2013-08-20 20:54:35 UTC MAIN commitmail json YAML

Add links for various directories needs by amd64/sparc64/i386/sun2/m68000

(matt)

2013-08-20 19:58:30 UTC MAIN commitmail json YAML

2013-08-20 19:19:23 UTC MAIN commitmail json YAML

2013-08-20 18:06:03 UTC MAIN commitmail json YAML

Add LIBISPRIVATE?=yes

(matt)

2013-08-20 18:05:03 UTC MAIN commitmail json YAML

Don't install libkern.a

(matt)

2013-08-20 17:43:47 UTC MAIN commitmail json YAML

We provide ./usr/lib/libkern.a now

(matt)

2013-08-20 17:41:58 UTC MAIN commitmail json YAML

remove some dead rules.
Use ln -sf

(matt)

2013-08-20 17:36:20 UTC MAIN commitmail json YAML

Build libkern

(matt)

2013-08-20 17:35:41 UTC MAIN commitmail json YAML

Make libkern.a for standalone problems and install it into ./usr/lib

(matt)

2013-08-20 16:34:47 UTC MAIN commitmail json YAML

Add a missing it gt before movgt for thumb

(matt)

2013-08-20 15:44:17 UTC MAIN commitmail json YAML

modernize, comment out dead code, amend gethostbyaddr prototype.

(christos)

2013-08-20 12:28:12 UTC MAIN commitmail json YAML

- deal with softint_establish failure
- establish softint only when necessary

(yamt)

2013-08-20 10:33:03 UTC MAIN commitmail json YAML

add US-IIe specific STICK and ESTAR registers

(macallan)

2013-08-20 08:08:59 UTC MAIN commitmail json YAML

Use the arm versions of strnlen if compiling thumb2

(matt)

2013-08-20 08:07:30 UTC MAIN commitmail json YAML

2013-08-20 08:06:30 UTC MAIN commitmail json YAML

2013-08-20 08:05:49 UTC MAIN commitmail json YAML

swap r1 & ip
use adds, eors, etc.
teq -> cmp

(matt)

2013-08-20 07:52:31 UTC MAIN commitmail json YAML

2013-08-20 07:25:52 UTC MAIN commitmail json YAML

Unless we are using an XSCALE, default to the normal arm version of memcpy.

(matt)

2013-08-20 00:20:55 UTC MAIN commitmail json YAML

2013-08-19 22:43:28 UTC MAIN commitmail json YAML

2013-08-19 22:34:41 UTC MAIN commitmail json YAML

Remove duplicate zh entry.

(joerg)

2013-08-19 22:26:10 UTC MAIN commitmail json YAML

2013-08-19 22:25:32 UTC MAIN commitmail json YAML

2013-08-19 22:23:12 UTC MAIN commitmail json YAML

2013-08-19 22:22:23 UTC MAIN commitmail json YAML

Always compile as arm code.

(matt)

2013-08-19 22:15:13 UTC MAIN commitmail json YAML

Put the ctors code in .text.startup and dtors code in .text.exit

(matt)

2013-08-19 22:14:37 UTC MAIN commitmail json YAML

2013-08-19 22:13:34 UTC MAIN commitmail json YAML

Group all syscalls together.

(matt)

2013-08-19 22:11:50 UTC MAIN commitmail json YAML

2013-08-19 22:10:51 UTC MAIN commitmail json YAML

Always compile as ARM even if -mthumb is given.

(matt)

2013-08-19 22:08:31 UTC MAIN commitmail json YAML

Do alternative text sections better, add a _TEXT_SECTION which defaults to
.text but can be overridden before <arm/asm.h> gets included.

(matt)

2013-08-19 20:41:15 UTC MAIN commitmail json YAML

Missing locale specific change.

(joerg)

2013-08-19 17:50:04 UTC MAIN commitmail json YAML

2013-08-19 17:41:47 UTC MAIN commitmail json YAML

2013-08-19 17:38:47 UTC MAIN commitmail json YAML

Swap use of r1 and ip
teq -> cmp.
add s to few instructions
(thumbify part 1)

(matt)

2013-08-19 17:02:25 UTC MAIN commitmail json YAML

2013-08-19 16:34:30 UTC MAIN commitmail json YAML

if softfloat, Install a ld.so.conf to use libc_vfp.so if there is a VFP on
evbarm (no other arm ports a CPU supporting VFP).

(matt)

2013-08-19 14:58:57 UTC MAIN commitmail json YAML

Don't return EPASSTHROUGH when succeeding in ODIOCGDINFO or ODIOCGDEFLABEL

(skrll)

2013-08-19 13:03:12 UTC MAIN commitmail json YAML

2013-08-19 10:59:39 UTC MAIN commitmail json YAML

2013-08-19 09:12:59 UTC MAIN commitmail json YAML

2013-08-19 08:03:34 UTC MAIN commitmail json YAML

2013-08-19 07:18:42 UTC MAIN commitmail json YAML

2013-08-19 07:06:06 UTC MAIN commitmail json YAML

2013-08-19 06:56:15 UTC MAIN commitmail json YAML

2013-08-19 06:23:59 UTC MAIN commitmail json YAML

2013-08-19 06:11:20 UTC MAIN commitmail json YAML

fix cfi_register -> cfi_offset

(matt)

2013-08-19 04:27:22 UTC MAIN commitmail json YAML

Instead of trying to pass two kernels to beagleboard.conf, pass one and
derive the path to the second from the first.

(jmcneill)

2013-08-19 03:55:12 UTC MAIN commitmail json YAML

Rework to allow thumb armv7 compilation.
Add atomic_simplelock.c for thumb

(matt)

2013-08-19 03:54:15 UTC MAIN commitmail json YAML

Thumbify (and use .cfi ops)

(matt)

2013-08-19 03:51:04 UTC MAIN commitmail json YAML

thumbify
add .cfi ops (for thumb)

(matt)

2013-08-19 03:47:06 UTC MAIN commitmail json YAML

2013-08-19 03:44:47 UTC MAIN commitmail json YAML

Add thumb version
Use STRONG_ALIAS

(matt)

2013-08-19 03:44:18 UTC MAIN commitmail json YAML

Use STRONG_ALIAS
Add thumb variation

(matt)

2013-08-19 03:43:07 UTC MAIN commitmail json YAML