Changeset 487

Show
Ignore:
Timestamp:
10/05/07 21:49:12 (4 years ago)
Author:
andi
Message:

Added depmod perl script from busybox to build
modules.dep after kernel build process

Location:
trunk/openmct
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/openmct/Rules

    r485 r487  
    9797REMOVESVN=$(SCRIPTDIR)/remove-svn.sh 
    9898CLEANUPROOT=$(SCRIPTDIR)/cleanup-root.sh 
     99DEPMOD=$(SCRIPTDIR)/depmod.pl 
    99100 
    100101# tar options 
  • trunk/openmct/packages/system/linux/Makefile

    r476 r487  
    44MAKEARGS=       CROSS_COMPILE=$(OPENMCT_CROSS_COMPILE) vmlinux modules 
    55 
    6 INSTALL=        $(RM) $(SRCDIR)/System.map ; \ 
    7                 $(GZIP) -9 -c $(SRCDIR)/vmlinux.bin >$(OUTPUTDIR)/vmlinux.bin.gz ; \ 
    8                 cd $(SRCDIR) && make INSTALL_MOD_PATH=$(NEWROOTDIR) modules_install 
     6INSTALL=        $(GZIP) -9 -c $(SRCDIR)/vmlinux.bin >$(OUTPUTDIR)/vmlinux.bin.gz && \ 
     7                cd $(SRCDIR) && make DEPMOD=/bin/true INSTALL_MOD_PATH=$(NEWROOTDIR) modules_install && \ 
     8                $(DEPMOD) -b $(NEWROOTDIR)/lib/modules/*/ -k vmlinux \ 
     9 
    910                 
    1011include         $(OPENMCT_DEVEL_PREFIX)Rules