Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
Software for White Rabbit PTP Core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
28
Issues
28
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Schedules
Wiki
Wiki
image/svg+xml
Discourse
Discourse
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Projects
Software for White Rabbit PTP Core
Commits
5d3fc51a
Commit
5d3fc51a
authored
Jun 13, 2012
by
Tomasz Wlostowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compilation fixes
parent
8656d5f8
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
5 additions
and
10 deletions
+5
-10
Makefile
Makefile
+3
-3
crt0.S
arch/lm32/crt0.S
+0
-0
debug.S
arch/lm32/debug.S
+0
-0
irq.c
arch/lm32/irq.c
+0
-0
ram.ld
arch/lm32/ram.ld
+0
-0
dev.mk
dev/dev.mk
+1
-2
board.h
include/board.h
+1
-5
No files found.
Makefile
View file @
5d3fc51a
...
...
@@ -29,9 +29,9 @@ OBJS_PTPD = $(PTP_NOPOSIX)/PTPWRd/arith.o \
$(PTP_NOPOSIX)
/libposix/net.o
CFLAGS_PLATFORM
=
-mmultiply-enabled
-mbarrel-shift-enabled
LDFLAGS_PLATFORM
=
-mmultiply-enabled
-mbarrel-shift-enabled
-nostdlib
-T
target
/lm32/ram.ld
LDFLAGS_PLATFORM
=
-mmultiply-enabled
-mbarrel-shift-enabled
-nostdlib
-T
arch
/lm32/ram.ld
OBJS_PLATFORM
=
target/lm32/crt0.o target/lm32/irq.o target
/lm32/debug.o
OBJS_PLATFORM
=
arch
/lm32/crt0.o
arch
/lm32/irq.o
arch
/lm32/debug.o
include
shell/shell.mk
include
tests/tests.mk
...
...
@@ -59,7 +59,7 @@ all: $(OBJS)
${
OBJCOPY
}
-O
binary
$(OUTPUT)
.elf
$(OUTPUT)
.bin
${
OBJDUMP
}
-d
$(OUTPUT)
.elf
>
$(OUTPUT)
_disasm.S
./tools/genraminit
$(OUTPUT)
.bin 0
>
$(OUTPUT)
.ram
./tools/genramvhd
-s
65536
$(OUTPUT)
.bin
>
$(OUTPUT)
.vhd
./tools/genramvhd
-s
81920
$(OUTPUT)
.bin
>
$(OUTPUT)
.vhd
clean
:
rm
-f
$(OBJS)
$(OUTPUT)
.elf
$(OUTPUT)
.bin
$(OUTPUT)
.ram
...
...
target
/lm32/crt0.S
→
arch
/lm32/crt0.S
View file @
5d3fc51a
File moved
target
/lm32/debug.S
→
arch
/lm32/debug.S
View file @
5d3fc51a
File moved
target
/lm32/irq.c
→
arch
/lm32/irq.c
View file @
5d3fc51a
File moved
target
/lm32/ram.ld
→
arch
/lm32/ram.ld
View file @
5d3fc51a
File moved
dev/dev.mk
View file @
5d3fc51a
OBJS_DEV = dev/dna.o \
dev/eeprom.o \
OBJS_DEV = dev/eeprom.o \
dev/endpoint.o \
dev/ep_pfilter.o \
dev/i2c.o \
...
...
include/board.h
View file @
5d3fc51a
...
...
@@ -21,9 +21,5 @@
#define NET_MAX_SOCKETS 3
#define NET_SKBUF_SIZE 256
static
inline
void
delay
(
int
x
)
{
while
(
x
--
)
asm
volatile
(
"nop"
);
}
#endif
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