gil-desktop:/nfs# make
make -C /kernel/au12xx/linux-2.6.21 SUBDIRS=/nfs modules
make[1]: Entering directory `/kernel/au12xx/linux-2.6.21'

  WARNING: Symbol version dump /kernel/au12xx/linux-2.6.21/Module.symvers
           is missing; modules will have no dependencies and modversions.

  Building modules, stage 2.
  MODPOST 1 modules
/bin/sh: scripts/mod/modpost: not found
make[2]: *** [__modpost] 오류 127
make[1]: *** [modules] 오류 2

make[1]: Leaving directory `/kernel/au12xx/linux-2.6.21'
make: *** [default] 오류 2

 

아래 있는 Makefile로 make를 하게 되면 위와 같은 에러가 생깁니다. 이유를 모르겟어요 ㅠㅠ


#
# kernel 2.6 driver Makefile
#
obj-m := dev_gpio.o

KDIR := /kernel/au12xx/linux-2.6.21
PWD := $(shell pwd)

SP_APP = app_gpio

default:
        $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
      // cp -f $(obj-m.o=.ko /nfs/au1200/.

        mipsel-linux-gcc -o $(SP_APP) $(SP_APP).c
      // cp -f $(SP_APP) /nfs/au1200/.

clean :
        rm -rf *.ko
        rm -rf *.mod.*
        rm -rf .*.cmd
        rm -rf *.o

주석을 단 부분은 nfs폴더로 복사하는 부분인거 같아서 주석처리 하였습니다.

 

답변좀 부탁 드리겟습니다.ㅠ