History log of /linux/arch/um/scripts/Makefile.rules (Results 151 – 175 of 261)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: v2.6.17
# f0cd91a6 10-Jun-2006 James Bottomley <jejb@mulgrave.il.steeleye.com>

Merge ../linux-2.6


Revision tags: v2.6.17-rc6, v2.6.17-rc5
# 5006ecc2 15-May-2006 Jeff Garzik <jeff@garzik.org>

Merge branch 'master' into upstream


# 7d63b54a 12-May-2006 Steven Whitehouse <swhiteho@redhat.com>

Merge branch 'master'


Revision tags: v2.6.17-rc4
# 5047f09b 06-May-2006 David Woodhouse <dwmw2@infradead.org>

Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6

Signed-off-by: David Woodhouse <dwmw2@infradead.org>


# aad61439 05-May-2006 John W. Linville <linville@tuxdriver.com>

Merge branch 'from-linus' into upstream


# f18fc729 05-May-2006 Paul Mackerras <paulus@samba.org>

Merge ../linux-2.6


# edc4ff7c 03-May-2006 David Woodhouse <dwmw2@infradead.org>

Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6


# 1fb5fef9 02-May-2006 Jeff Garzik <jeff@garzik.org>

Merge branch 'master' into upstream


# 7b12b913 01-May-2006 Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>

[PATCH] uml: cleanup unprofile expression and build infrastructure

*) Rather than duplicate in various buggy ways the application of
CFLAGS_NO_HARDENING and UNPROFILE (which apply to the same fil

[PATCH] uml: cleanup unprofile expression and build infrastructure

*) Rather than duplicate in various buggy ways the application of
CFLAGS_NO_HARDENING and UNPROFILE (which apply to the same files),
centralize it in Makefile.rules. UNPROFILE_OBJS mustn't be listed in
USER_OBJS but are compiled as such.

I've also verified that unprofile didn't work in the current form, because we
set _c_flags directly (using CFLAGS and not USER_CFLAGS, which is wrong),
which is normally used by c_flags, but we also override c_flags for all
USER_OBJS, and there we don't call unprofile.

Instead it only worked for unmap.o, the only one which wasn't a USER_OBJ.

We need to set c_flags (which is not a public Kbuild API) to clear a lot of
compilation flags like -nostdinc which Kbuild forces on everything.

*) Rather than $(CFLAGS_$(notdir $@)), which expands to CFLAGS_anObj.s when
building "anObj.s", use $(CFLAGS_$(*F).o) which always accesses
CFLAGS_anObj.o, like done by Kbuild.

*) Make c_flags apply to all targets having the same basename, rather than
listing .s, .i, .lst and .o, with the use (which I tested) of

$(USER_OBJS:.o=.%): c_flags = ...

and of

- $(obj)/unmap.c: _c_flags = ...
+ $(obj)/unmap.%: _c_flags = ...

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Acked-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

show more ...


# 7b7e3941 29-Apr-2006 Dmitry Torokhov <dtor_core@ameritech.net>

Merge rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6


Revision tags: v2.6.17-rc3
# a748422e 21-Apr-2006 Steven Whitehouse <swhiteho@redhat.com>

Merge branch 'master'


Revision tags: v2.6.17-rc2
# f1f76afd 18-Apr-2006 Dave Jones <davej@redhat.com>

Merge ../linus


# 32ea89ec 12-Apr-2006 Jeff Garzik <jeff@garzik.org>

Merge branch 'master'


# a890b15c 12-Apr-2006 Jeff Garzik <jeff@garzik.org>

Merge branch 'upstream'


# 875999c5 12-Apr-2006 Jeff Garzik <jeff@garzik.org>

Merge branch 'upstream'


# 10a5fd5e 11-Apr-2006 Jeff Garzik <jeff@garzik.org>

Merge branch 'master'

Conflicts:

drivers/scsi/libata-scsi.c
include/linux/libata.h


# ccea15f4 11-Apr-2006 Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>

[PATCH] uml: support sparse for userspace files

Make sparse checker work for userspace files - it normally gets -nostdinc
separately, so avoid having it for userspace files. Also, add -D$(SUBARCH)

[PATCH] uml: support sparse for userspace files

Make sparse checker work for userspace files - it normally gets -nostdinc
separately, so avoid having it for userspace files. Also, add -D$(SUBARCH)
for multiarch hosts (i.e. AMD64 with compatibility headers).

It works, the only problem is a bit of bogus warnings for system headers, but
they're not too many.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

show more ...


# 76467874 03-Apr-2006 Steven Whitehouse <swhiteho@redhat.com>

Merge branch 'master'


Revision tags: v2.6.17-rc1
# 95d465fd 02-Apr-2006 Dmitry Torokhov <dtor_core@ameritech.net>

Manual merge with Linus.

Conflicts:
arch/powerpc/kernel/setup-common.c
drivers/input/keyboard/hil_kbd.c
drivers/input/mouse/hil_ptr.c


# 6e07e164 01-Apr-2006 Jeff Garzik <jeff@garzik.org>

Merge branch 'upstream'


# de2fe5e0 31-Mar-2006 Al Viro <viro@zeniv.linux.org.uk>

[PATCH] uml: eliminate symlinks to host arch

kills symlinks in arch/um/sys-*

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' G

[PATCH] uml: eliminate symlinks to host arch

kills symlinks in arch/um/sys-*

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

show more ...


Revision tags: v2.6.16, v2.6.16-rc6, v2.6.16-rc5, v2.6.16-rc4, v2.6.16-rc3, v2.6.16-rc2
# 0a0fc0dd 24-Jan-2006 Dave Kleikamp <shaggy@austin.ibm.com>

Merge with /home/shaggy/git/linus-clean/


Revision tags: v2.6.16-rc1
# ed03f430 07-Jan-2006 Len Brown <len.brown@intel.com>

Pull pnpacpi into acpica branch


# 34b8c399 04-Jan-2006 Jody McIntyre <scjody@modernduck.com>

Merge with http://kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git


# 61420e14 03-Jan-2006 Jeff Garzik <jgarzik@pobox.com>

Merge branch 'upstream'


1234567891011