diff --git a/bsp/board/domo/ovl/etc/init.d/boot b/bsp/board/domo/ovl/etc/init.d/boot index 1782ef00..0ac45d79 100755 --- a/bsp/board/domo/ovl/etc/init.d/boot +++ b/bsp/board/domo/ovl/etc/init.d/boot @@ -10,4 +10,7 @@ boot() { /bin/mkdir -p /dev/pts /bin/mkdir -p /dev/shm /bin/mount -a + /bin/mkdir -p /mnt/user/etc + /bin/mkdir -p /mnt/user/work + /bin/mount none -t overlay -o lowerdir=/etc,upperdir=/mnt/user/etc,workdir=/mnt/user/work /etc } diff --git a/bsp/board/domo/ovl/etc/init.d/network b/bsp/board/domo/ovl/etc/init.d/netifd similarity index 99% rename from bsp/board/domo/ovl/etc/init.d/network rename to bsp/board/domo/ovl/etc/init.d/netifd index e3c12938..6108a416 100755 --- a/bsp/board/domo/ovl/etc/init.d/network +++ b/bsp/board/domo/ovl/etc/init.d/netifd @@ -2,7 +2,7 @@ # # netifd -START=20 +START=21 STOP=90 NAME=netifd diff --git a/bsp/board/domo/ovl/etc/rc.d/K90netifd b/bsp/board/domo/ovl/etc/rc.d/K90netifd new file mode 120000 index 00000000..9f9d65a8 --- /dev/null +++ b/bsp/board/domo/ovl/etc/rc.d/K90netifd @@ -0,0 +1 @@ +../init.d/netifd \ No newline at end of file diff --git a/bsp/board/domo/ovl/etc/rc.d/K90network b/bsp/board/domo/ovl/etc/rc.d/K90network deleted file mode 120000 index 27f4143b..00000000 --- a/bsp/board/domo/ovl/etc/rc.d/K90network +++ /dev/null @@ -1 +0,0 @@ -../init.d/network \ No newline at end of file diff --git a/bsp/board/domo/ovl/etc/rc.d/S20network b/bsp/board/domo/ovl/etc/rc.d/S20network deleted file mode 120000 index 27f4143b..00000000 --- a/bsp/board/domo/ovl/etc/rc.d/S20network +++ /dev/null @@ -1 +0,0 @@ -../init.d/network \ No newline at end of file diff --git a/bsp/board/domo/ovl/etc/rc.d/S21netifd b/bsp/board/domo/ovl/etc/rc.d/S21netifd new file mode 120000 index 00000000..9f9d65a8 --- /dev/null +++ b/bsp/board/domo/ovl/etc/rc.d/S21netifd @@ -0,0 +1 @@ +../init.d/netifd \ No newline at end of file diff --git a/bsp/board/domo/ovl/etc/fstab b/projects/rpi_domo/ovl/etc/fstab similarity index 82% rename from bsp/board/domo/ovl/etc/fstab rename to projects/rpi_domo/ovl/etc/fstab index d00bacde..86ee44af 100644 --- a/bsp/board/domo/ovl/etc/fstab +++ b/projects/rpi_domo/ovl/etc/fstab @@ -1,4 +1,5 @@ # +/dev/root / ext2 rw,noauto 0 1 proc /proc proc defaults 0 0 devpts /dev/pts devpts defaults,gid=5,mode=620 0 0 tmpfs /dev/shm tmpfs mode=0777 0 0 @@ -6,4 +7,4 @@ tmpfs /tmp tmpfs mode=1777 0 0 tmpfs /run tmpfs mode=0755,nosuid,nodev 0 0 sysfs /sys sysfs defaults 0 0 /dev/mmcblk0p1 /boot vfat defaults 0 0 -/dev/mmcblk0p2 /mnt/user vfat defaults 0 2 +/dev/mmcblk0p2 /mnt/user ext2 defaults 0 2