Show
Ignore:
Timestamp:
10/04/07 08:30:37 (5 years ago)
Author:
andi
Message:

/var directory will be JFFS2 (instead of /conf)
fix cleanup-root.sh for correct handling (initial /var)
update buildroot Makefile (do not symlink /var)
update owi Makefile (correct cleanup code)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/openmct/packages/build/buildetc/Makefile

    r436 r472  
    44                        $(CP) -a $(SRCDIR)/etc $(NEWROOTDIR)/etc ; \ 
    55                fi && \ 
    6                 if [ ! -d $(NEWCONFDIR) ]; then \ 
    7                         $(CP) -a $(SRCDIR)/conf $(NEWCONFDIR); \ 
     6                if [ ! -d $(NEWVARDIR) ]; then \ 
     7                        $(CP) -a $(SRCDIR)/var/etc $(NEWVARDIR); \ 
    88                fi 
    99 
     
    1111                        $(RM) -rf $(NEWROOTDIR)/etc ; \ 
    1212                fi && \ 
    13                 if [ -d $(NEWCONFDIR) ]; then \ 
    14                         $(RM) -rf $(NEWCONFDIR); \ 
     13                if [ -d $(NEWVARDIR) ]; then \ 
     14                        $(RM) -rf $(NEWVARDIR); \ 
    1515                fi 
    1616