Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
42274964
Commit
42274964
authored
Nov 18, 2002
by
Jeff Dike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved the ptproxy code from arch/um/ptproxy to
arch/um/kernel/tt/ptproxy.
parent
fc983daf
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
30 additions
and
14 deletions
+30
-14
arch/um/kernel/Makefile
arch/um/kernel/Makefile
+21
-14
arch/um/kernel/tt/Makefile
arch/um/kernel/tt/Makefile
+9
-0
arch/um/kernel/tt/ptproxy/Makefile
arch/um/kernel/tt/ptproxy/Makefile
+0
-0
arch/um/kernel/tt/ptproxy/proxy.c
arch/um/kernel/tt/ptproxy/proxy.c
+0
-0
arch/um/kernel/tt/ptproxy/ptproxy.h
arch/um/kernel/tt/ptproxy/ptproxy.h
+0
-0
arch/um/kernel/tt/ptproxy/ptrace.c
arch/um/kernel/tt/ptproxy/ptrace.c
+0
-0
arch/um/kernel/tt/ptproxy/sysdep.c
arch/um/kernel/tt/ptproxy/sysdep.c
+0
-0
arch/um/kernel/tt/ptproxy/sysdep.h
arch/um/kernel/tt/ptproxy/sysdep.h
+0
-0
arch/um/kernel/tt/ptproxy/wait.c
arch/um/kernel/tt/ptproxy/wait.c
+0
-0
arch/um/kernel/tt/ptproxy/wait.h
arch/um/kernel/tt/ptproxy/wait.h
+0
-0
No files found.
arch/um/kernel/Makefile
View file @
42274964
#
# Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
# Licensed under the GPL
#
EXTRA_TARGETS
:=
unmap_fin.o
obj-y
=
config.o exec_kern.o exec_user.o exitcode.o frame_kern.o frame.o
\
...
...
@@ -9,32 +14,33 @@ obj-y = config.o exec_kern.o exec_user.o exitcode.o frame_kern.o frame.o \
umid.o user_util.o
obj-$(CONFIG_BLK_DEV_INITRD)
+=
initrd_kern.o initrd_user.o
obj-$(CONFIG_GPROF)
+=
gprof_syms.o
obj-$(CONFIG_GCOV)
+=
gmon_syms.o
obj-$(CONFIG_TTY_LOG)
+=
tty_log.o
subdir-$(CONFIG_PTPROXY)
+=
tt
user-objs-$(CONFIG_TTY_LOG)
+=
tty_log.o
# user_syms.o not included here because Rules.make has its own ideas about
# building anything in export-objs
USER_OBJS
:=
$(
filter
%_user.o,
$
(
obj-y
))
config.o helper.o process.o
\
tempfile.o time.o tty_log.o umid.o user_util.o user_syms.o
USER_OBJS
:=
$(
filter
%_user.o,
$
(
obj-y
))
$
(
user-objs-y
)
config.o helper.o
process.o
tempfile.o
time.o
tty_log.o
umid.o
user_util.o
user_syms.o
USER_OBJS
:=
$(
foreach
file,
$(USER_OBJS)
,arch/um/kernel/
$(file)
)
export-objs
:=
ksyms.o process_kern.o signal_kern.o gprof_syms.o gmon_syms.o
UNMAP_CFLAGS
:=
$(
patsubst
-pg
-DPROFILING
,,
$(USER_CFLAGS)
)
UNMAP_CFLAGS
:=
$(
patsubst
-fprofile-arcs
-ftest-coverage
,,
$(UNMAP_CFLAGS)
)
ifeq
($(CONFIG_MODULES), y)
DMODULES
=
-D__CONFIG_MODULES__
endif
DMODULES-$(CONFIG_MODULES)
=
-D__CONFIG_MODULES__
DMODVERSIONS-$(CONFIG_MODVERSIONS)
=
-D__CONFIG_MODVERSIONS__
ifeq
($(CONFIG_MODVERSIONS), y)
DMODVERSIONS
=
-D__CONFIG_MODVERSIONS__
endif
export-objs-$(CONFIG_GPROF)
+=
gprof_syms.o
export-objs-$(CONFIG_GCOV)
+=
gmon_syms.o
obj-$(CONFIG_GPROF)
+=
gprof_syms.o
obj-$(CONFIG_GCOV)
+=
gmon_syms.o
obj-$(CONFIG_TTY_LOG)
+=
tty_log.o
export-objs
:=
ksyms.o process_kern.o signal_kern.o
$
(
export-objs-y
)
CFLAGS_user_syms.o
=
-D__AUTOCONF_INCLUDED__
$(DMODULES
)
$(DMODVERSIONS
)
\
CFLAGS_user_syms.o
=
-D__AUTOCONF_INCLUDED__
$
(
DMODULES
-y
)
$
(
DMODVERSIONS-y
)
\
-I
/usr/include
-I
../include
CFLAGS_frame.o
:=
$(
patsubst
-fomit-frame-pointer
,,
$(USER_CFLAGS)
)
...
...
@@ -65,6 +71,7 @@ arch/um/kernel/config.o : arch/um/kernel/config.c
clean
:
rm
-f
config.c
for
dir
in
$
(
subdir-y
)
;
do
$(MAKE)
-C
$$
dir
clean
;
done
modules
:
...
...
arch/um/kernel/tt/Makefile
0 → 100644
View file @
42274964
#
# Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
# Licensed under the GPL
#
subdir-$(CONFIG_PT_PROXY)
+=
ptproxy
include
$(TOPDIR)/Rules.make
arch/um/ptproxy/Makefile
→
arch/um/
kernel/tt/
ptproxy/Makefile
View file @
42274964
File moved
arch/um/ptproxy/proxy.c
→
arch/um/
kernel/tt/
ptproxy/proxy.c
View file @
42274964
File moved
arch/um/ptproxy/ptproxy.h
→
arch/um/
kernel/tt/
ptproxy/ptproxy.h
View file @
42274964
File moved
arch/um/ptproxy/ptrace.c
→
arch/um/
kernel/tt/
ptproxy/ptrace.c
View file @
42274964
File moved
arch/um/ptproxy/sysdep.c
→
arch/um/
kernel/tt/
ptproxy/sysdep.c
View file @
42274964
File moved
arch/um/ptproxy/sysdep.h
→
arch/um/
kernel/tt/
ptproxy/sysdep.h
View file @
42274964
File moved
arch/um/ptproxy/wait.c
→
arch/um/
kernel/tt/
ptproxy/wait.c
View file @
42274964
File moved
arch/um/ptproxy/wait.h
→
arch/um/
kernel/tt/
ptproxy/wait.h
View file @
42274964
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment