50_pivot 383 B

1234567891011121314151617
  1. #!/bin/sh
  2. # Copyright (C) 2006-2010 OpenWrt.org
  3. # Copyright (C) 2010 Vertical Communications
  4. with_fo_pivot() {
  5. # switch back to squashfs (temporarily)
  6. # and park the ramdisk ontop of /tmp/root
  7. pivot /rom /mnt
  8. mount -o move /mnt /tmp/root
  9. # /overlay is the overlay
  10. # /rom is the readonly
  11. fopivot /overlay /rom
  12. }
  13. boot_hook_add switch2jffs with_fo_pivot