我尝试从文件2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DPO.bz2到 RT5370 芯片组构建 2.5.0.3 驱动程序。
在Ubuntu 10.04.4 x32下安装STLinux 2.4,在内核linux-sh4-2.5.32.59_stm24_0211下制作。但是我在path中写了/opt/STM/STLinux-2.2/devkit/sources/kernel/linux-sh4-2.5.32.59_stm24_0211而不是STLinux-2.4,因为Makefile有一些缺陷:
install:
ifeq ($(TARGET), LINUX)
ifneq (,$(findstring 2.4,$(LINUX_SRC)))
$(MAKE) -C $(RT28xx_DIR)/os/linux -f Makefile.4 install
else
$(MAKE) -C $(RT28xx_DIR)/os/linux -f Makefile.6 install
endif
endif
在路径 2.4 中提到将内核构建为 2.4,在我的情况下这是一个错误。
在 Makefile 中写道:
PLATFORM = ST
...
LINUX_SRC = /opt/STM/STLinux-2.2/devkit/sources/kernel/linux-sh4-2.5.32.59_stm24_0211
CROSS_COMPILE = /opt/STM/STLinux-2.2/devkit/sh4/bin/sh4-linux-
在 ./os/linux/config.mk 中写道:
HAS_WPA_SUPPLICANT=y
HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
CC := sh4-linux-gcc
LD := sh4-linux-ld
在运行 make 命令时构建。但是有错误:
script/Makefile.build:49: *** CFLAGS was changed in "/home/vitaliy/drv_src/os/linux/Makefile". Fix it to use EXTRA_CFLAGS.
在 ./os/linux/config.mk 建立字符串:
ifeq ($(PLATFORM),ST)
CFLAGS := -D__KERNEL__ -I$(LINUX_SRC)/include -I$(RT28xx_DIR)/include -Wall -O2 -Wundef -Wstrict-prototypes -Wno-trigraphs -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-aliasing -fno-common -fomit-frame-pointer -ffreestanding -m4-nofpu -o $(WFLAGS)
export CFLAGS
endif
并在其中将 CFLAGS 更改为 EXTRA_CFLAGS。
再次错误:
sh4-linux-gcc: error: -pg and -fomit-frame-pointer are incompatible.
好的。删除标志 -fomit-frame-pointer。
再次错误:
error: cpu/cache.h: No such file or directory.
在字符串中:
WFLAGS := -DAGGREGATION_SUPPORT -DPIGGYBACK_SUPPORT -DWMM_SUPPORT -DLINUX -Wall -Wstrict-prototypes -Wno-trigraphs
删除标志 -DLINUX。
再次出现未知类型的错误(例如:./os/linux/../../common/crypt_md5.c:638:1: error: unknown type name 'VOID' 等类型为 'UCHAR'、'ULONG ' ETC)。
第二种构建方式
KBUILD_NOPEDANTIC=1 不更改驱动程序的源文件。
在这种情况下也会出错:
./os/linux/../../common/crypt_md5.c:28:23: fatal error: rt_config.h: No such file or directory.
我的大楼出了什么问题?或者我可以修复源代码并为 SH4 平台构建驱动程序。
谢谢!