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
Kirill Smelkov
linux
Commits
a8ddf6c1
Commit
a8ddf6c1
authored
Nov 18, 2002
by
Jeff Dike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A few more fixes to get 2.4.48 to boot.
parent
d6d05310
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
19 deletions
+20
-19
arch/um/drivers/line.c
arch/um/drivers/line.c
+1
-0
arch/um/kernel/sysrq.c
arch/um/kernel/sysrq.c
+2
-2
arch/um/sys-i386/Makefile
arch/um/sys-i386/Makefile
+17
-17
No files found.
arch/um/drivers/line.c
View file @
a8ddf6c1
...
@@ -13,6 +13,7 @@
...
@@ -13,6 +13,7 @@
#include "line.h"
#include "line.h"
#include "kern.h"
#include "kern.h"
#include "user_util.h"
#include "user_util.h"
#include "kern_util.h"
#include "os.h"
#include "os.h"
#define LINE_BUFSIZE 4096
#define LINE_BUFSIZE 4096
...
...
arch/um/kernel/sysrq.c
View file @
a8ddf6c1
...
@@ -19,8 +19,8 @@
...
@@ -19,8 +19,8 @@
#ifdef CONFIG_MODULES
#ifdef CONFIG_MODULES
extern
struct
module
*
module_list
;
/* FIXME: Accessed without a lock --RR */
extern
struct
module
kernel_module
;
extern
struct
list_head
modules
;
static
inline
int
kernel_text_address
(
unsigned
long
addr
)
static
inline
int
kernel_text_address
(
unsigned
long
addr
)
{
{
...
...
arch/um/sys-i386/Makefile
View file @
a8ddf6c1
obj-y
=
bugs.o checksum.o extable.o fault.o ksyms.o ldt.o
\
obj-y
=
bugs.o checksum.o extable.o fault.o ksyms.o ldt.o
module.o
\
ptrace.o ptrace_user.o semaphore.o sigcontext.o syscalls.o sysrq.o
ptrace.o ptrace_user.o semaphore.o sigcontext.o syscalls.o sysrq.o
obj-$(CONFIG_HIGHMEM)
+=
highmem.o
obj-$(CONFIG_HIGHMEM)
+=
highmem.o
...
@@ -6,30 +6,30 @@ obj-$(CONFIG_HIGHMEM) += highmem.o
...
@@ -6,30 +6,30 @@ obj-$(CONFIG_HIGHMEM) += highmem.o
export-objs
=
ksyms.o
export-objs
=
ksyms.o
USER_OBJS
:=
bugs.o ptrace_user.o sigcontext.o fault.o
USER_OBJS
:=
bugs.o ptrace_user.o sigcontext.o fault.o
USER_OBJS
:=
$(
foreach
file,
$(USER_OBJS)
,arch/um/sys-i386/
$(file)
)
SYMLINKS
=
semaphore.c checksum.S extable.c highmem.c
SYMLINKS
=
semaphore.c checksum.S extable.c highmem.c module.c
semaphore.c-dir
=
kernel
checksum.S-dir
=
lib
extable.c-dir
=
mm
highmem.c-dir
=
mm
module.c-dir
=
kernel
define
make_link
-rm
-f
$1
ln
-sf
$(TOPDIR)/arch/i386/$($(notdir
$1)-dir)/$(notdir
$1)
$1
endef
include
$(TOPDIR)/Rules.make
include
$(TOPDIR)/Rules.make
USER_OBJS
:=
$(
foreach
file,
$(USER_OBJS)
,
$(obj)
/
$(file)
)
$(USER_OBJS)
:
%.o: %.c
$(USER_OBJS)
:
%.o: %.c
$(CC)
$
(
CFLAGS_
$@
)
$(USER_CFLAGS)
-c
-o
$@
$<
$(CC)
$
(
CFLAGS_
$@
)
$(USER_CFLAGS)
-c
-o
$@
$<
arch/um/sys-i386/checksum.S
:
$(foreach f,$(SYMLINKS),$(src)/$f)
:
-
rm
-f
$@
$(
call
make_link,
$@
)
-
ln
-s
$(TOPDIR)
/arch/i386/lib/
$(
notdir
$@
)
$@
arch/um/sys-i386/semaphore.c
:
-
rm
-f
$@
-
ln
-s
$(TOPDIR)
/arch/i386/kernel/
$(
notdir
$@
)
$@
arch/um/sys-i386/extable.c
:
-
rm
-f
$@
-
ln
-s
$(TOPDIR)
/arch/i386/mm/
$(
notdir
$@
)
$@
arch/um/sys-i386/highmem.c
:
-
rm
-f
$@
-
ln
-s
$(TOPDIR)
/arch/i386/mm/
$(
notdir
$@
)
$@
clean
:
clean
:
$(MAKE)
-C
util clean
$(MAKE)
-C
util clean
...
...
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