https://github.com/torvalds/linux
Revision d7a60d50d7713b65a3fd88f11d5717b83a6b6a97 authored by Paolo 'Blaisorblade' Giarrusso on 26 August 2005, 14:57:44 UTC, committed by Linus Torvalds on 26 August 2005, 18:39:19 UTC
Update hppfs for the symlink functions prototype change.

Yes, I know the code I leave there is still _bogus_, see next patch for
this.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
1 parent 7c657f2
Raw File
Tip revision: d7a60d50d7713b65a3fd88f11d5717b83a6b6a97 authored by Paolo 'Blaisorblade' Giarrusso on 26 August 2005, 14:57:44 UTC
[PATCH] Fixup symlink function pointers for hppfs [for 2.6.13]
Tip revision: d7a60d5
mkmakefile
#!/bin/sh
# Generates a small Makefile used in the root of the output
# directory, to allow make to be started from there.
# The Makefile also allow for more convinient build of external modules

# Usage
# $1 - Kernel src directory
# $2 - Output directory
# $3 - version
# $4 - patchlevel


cat << EOF
# Automatically generated by $0: don't edit

VERSION = $3
PATCHLEVEL = $4

KERNELSRC    := $1
KERNELOUTPUT := $2

MAKEFLAGS += --no-print-directory

all:
	\$(MAKE) -C \$(KERNELSRC) O=\$(KERNELOUTPUT)

%::
	\$(MAKE) -C \$(KERNELSRC) O=\$(KERNELOUTPUT) \$@

EOF

back to top