Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
#

kerndir=kernel/linux-2.6.36
cross=../../toolchain/hndtools-arm-linux-2.6.36-uclibc-4.5.3/bin/arm-brcm-linux-uclibcgnueabi-
cross=../../toolchain/toolchain-arm_cortex-a9+vfpv3_gcc-4.8-linaro_uClibc-0.9.33.2_eabi/bin/arm-openwrt-linux-uclibcgnueabi-

STRIP=toolchain/hndtools-arm-linux-2.6.36-uclibc-4.5.3/bin/arm-brcm-linux-uclibcgnueabi-strip
STRIP=toolchain/toolchain-arm_cortex-a9+vfpv3_gcc-4.8-linaro_uClibc-0.9.33.2_eabi/bin/arm-openwrt-linux-uclibcgnueabi-strip

NCPUS:=1
OS:=$(shell uname -s)
Expand All @@ -14,7 +14,8 @@ ifeq ($(OS),Linux)
NCPUS:=$(shell grep -c ^processor /proc/cpuinfo)
endif

export LD_LIBRARY_PATH=$(shell pwd)/toolchain/hndtools-arm-linux-2.6.36-uclibc-4.5.3/lib/
export LD_LIBRARY_PATH=$(shell pwd)/toolchain/toolchain-arm_cortex-a9+vfpv3_gcc-4.8-linaro_uClibc-0.9.33.2_eabi/lib/
export STAGING_DIR=$(shell pwd)/staging_dir/

all: vmlinuz rootfs
@echo '-----------------------------------------------------'
Expand Down
2 changes: 1 addition & 1 deletion kernel/linux-2.6.36/drivers/net/et/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#
# $Id: Makefile,v 1.5 2010-12-07 04:47:36 $
#
EXTRA_CFLAGS += -DDMA -Werror -Idrivers/net/et/
EXTRA_CFLAGS += -DDMA -Idrivers/net/et/

obj-$(CONFIG_ET) := et.o

Expand Down