Changeset 479
- Timestamp:
- 10/04/07 20:41:46 (4 years ago)
- Location:
- trunk/openmct/packages
- Files:
-
- 4 added
- 4 modified
-
base/busybox/Makefile (modified) (1 diff)
-
base/busybox/configs/config (modified) (1 diff)
-
build/buildetc/src/etc/dropbear (added)
-
build/buildetc/src/etc/ld.so.cache (added)
-
build/buildetc/src/etc/ld.so.conf (added)
-
build/buildetc/src/etc/rc.d/rcS (modified) (4 diffs)
-
build/buildetc/src/var/etc/dropbear (added)
-
lib/e2fsprogs/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/openmct/packages/base/busybox/Makefile
r474 r479 4 4 MAKEARGS= CROSS_COMPILE=$(OPENMCT_CROSS_COMPILE) 5 5 6 INSTALL= cd $(SRCDIR) && make CROSS_COMPILE=$(OPENMCT_CROSS_COMPILE) CONFIG_PREFIX=$(NEWROOTDIR) install && cd .. 6 INSTALL= cd $(SRCDIR) && make CROSS_COMPILE=$(OPENMCT_CROSS_COMPILE) \ 7 CONFIG_PREFIX=$(NEWROOTDIR) install && cd .. 7 8 8 9 include $(OPENMCT_DEVEL_PREFIX)Rules -
trunk/openmct/packages/base/busybox/configs/config
r473 r479 59 59 # Installation Options 60 60 # 61 # CONFIG_INSTALL_NO_USR is not set 61 CONFIG_INSTALL_NO_USR=y 62 62 CONFIG_INSTALL_APPLET_SYMLINKS=y 63 63 # CONFIG_INSTALL_APPLET_HARDLINKS is not set -
trunk/openmct/packages/build/buildetc/src/etc/rc.d/rcS
r475 r479 7 7 8 8 echo -n "Added /usr/lib directory ... " 9 ldconfig -C /etc/ld.so.cache -f/etc/ld.so.conf -X /usr/lib9 /sbin/ldconfig -C /var/etc/ld.so.cache -f /var/etc/ld.so.conf -X /usr/lib 10 10 echo "" 11 11 … … 35 35 if [ "$START_HTTPD" == "yes" ]; then 36 36 echo -n "Starting Web Server ..." 37 if [ -d /usr/ data/www ]; then38 /sbin/httpd -h /usr/ data/www37 if [ -d /usr/var/www ]; then 38 /sbin/httpd -h /usr/var/www 39 39 else 40 /sbin/httpd -h / www40 /sbin/httpd -h /var/www 41 41 fi 42 42 echo "" … … 46 46 # we create the directory with '-p' option on mkdir, so every directory ahead the named directory is builded automaticly 47 47 48 DIRECTORY="/ usr/var /usr/var/empty /usr/var/log/samba /usr/var/run/samba /usr/var/lib/samba /usr/var/lib/nfs"48 DIRECTORY="/var/empty /var/log/samba /var/run/samba /var/lib/samba /var/lib/nfs" 49 49 echo "looking up for $DIRECTORY" 50 50 for i in $DIRECTORY; do … … 53 53 54 54 # ok, and now checking for some files needed for NFS 55 FILES="/ usr/var/lib/nfs/rmtab /usr/var/lib/nfs/etab /usr/var/lib/nfs/xtab"55 FILES="/var/lib/nfs/rmtab /var/lib/nfs/etab /var/lib/nfs/xtab" 56 56 for i in $FILES; do 57 57 test -d $i || touch $i; -
trunk/openmct/packages/lib/e2fsprogs/Makefile
r463 r479 8 8 $(LN) -sf libuuid.so.1.2 $(NEWROOTDIR)/lib/libuuid.so.1 && \ 9 9 $(LN) -sf libuuid.so.1.2 $(NEWROOTDIR)/lib/libuuid.so && \ 10 $(CP) $(SRCDIR)/lib/libblkid.so.1.0 $(NEWROOTDIR)/lib && \ 11 $(STRIP) $(NEWROOTDIR)/lib/libblkid.so.1.0 && \ 12 $(LN) -sf libblkid.so.1.0 $(NEWROOTDIR)/lib/libblkid.so.1 && \ 13 $(LN) -sf libblkid.so.1.0 $(NEWROOTDIR)/lib/libblkid.so && \ 10 14 cd $(SRCDIR) && make install-libs && cd .. 11 15
