Changeset 3417
- Timestamp:
- 08/06/07 17:06:01 (1 year ago)
- Files:
-
- trunk/freewrt/package/base-files/Makefile (modified) (2 diffs)
- trunk/freewrt/package/base-files/files/etc/preinit (modified) (1 diff)
- trunk/freewrt/target/linux/rb-2.6/files/sbin/mount_root (modified) (1 diff)
- trunk/freewrt/target/linux/x86-2.6/files/sbin/mount_root (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/package/base-files/Makefile
r3405 r3417 10 10 PKG_NAME:= base-files 11 11 PKG_VERSION:= 1.1 12 PKG_RELEASE:= 2 712 PKG_RELEASE:= 28 13 13 WRKDIST= ${WRKDIR}/base-files 14 14 NO_DISTFILES:= 1 … … 369 369 ${_IPKGS_COOKIE}: ${TOPDIR}/.cfg/FWRT_LINUX_2_4_BRCM_NETGEAR_WGT634U 370 370 ${_IPKGS_COOKIE}: ${TOPDIR}/.cfg/FWRT_LINUX_2_6_BRCM_ASUS_WL500G_PREMIUM 371 ${_IPKGS_COOKIE}: ${TOPDIR}/.cfg/FWRT_LINUX_2_6_BRCM_NETGEAR_WGT634U372 371 ${_IPKGS_COOKIE}: ${TOPDIR}/.cfg/FWRT_LINUX_2_4_RB_RB532 373 372 ${_IPKGS_COOKIE}: ${TOPDIR}/.cfg/FWRT_LINUX_2_6_RB_RB532 trunk/freewrt/package/base-files/files/etc/preinit
r3391 r3417 4 4 mount -nt proc proc /proc 5 5 if [[ ! -e /dev/null ]]; then 6 mount -no remount,rw / 6 # this is linux 2.6 only anyway, we have devfs in 2.4 7 mount -t tmpfs mdev /dev 7 8 # values hard-coded for Linux 8 9 mknod -m 0666 /dev/null c 1 3 trunk/freewrt/target/linux/rb-2.6/files/sbin/mount_root
r2569 r3417 6 6 chmod 1777 /tmp 7 7 mount -o remount,rw / 8 mount -o nosuid -t tmpfs mdev /dev8 mount | fgrep -q 'on /dev' || mount -o nosuid -t tmpfs mdev /dev 9 9 mount -o nosuid,nodev,noexec -t sysfs sysfs /sys 10 10 mkdir -p /dev/pts trunk/freewrt/target/linux/x86-2.6/files/sbin/mount_root
r2035 r3417 5 5 mount none /tmp -t tmpfs -o remount,nosuid,nodev,mode=1777 6 6 mount -o remount,rw / 7 mount -o nosuid -t tmpfs mdev /dev7 mount | fgrep -q 'on /dev' || mount -o nosuid -t tmpfs mdev /dev 8 8 mount -o nosuid,nodev,noexec -t sysfs sysfs /sys 9 9 mkdir -p /dev/pts


