Create and enable a swapfile for devices with USB storage
Go to file
fernao a765453062 Update 'README.md' 2023-07-06 22:27:33 -03:00
LICENSE Initial commit 2023-05-29 16:53:11 -03:00
README.md Update 'README.md' 2023-07-06 22:27:33 -03:00
etc-init.d-swapfile Update 'etc-init.d-swapfile' 2023-07-03 18:15:27 -03:00

README.md

swapfile

Create and enable a swapfile for devices with USB support. It is assumed that extra USB storage is already configured via opkg and fstab, as the swapfile most likely won't fit into the MTD storage.

The script must be copied into /etc/init.d/ and given execution permission chmod +x /etc/init.d/swapfile

The variable $SWPATH defines where the swapfile will be located in the filesystem, so it must be changed accordingly before the script is executed. Default value is /overlay/swapfile

Usage: /etc/init.d/swapfile FUNCTION

Available functions:

  • boot: if swapfile service is enabled, mounts the swapfile on boot and logs the action on syslog;

  • start: mounts the swapfile on demand, logs the action on syslog and displays a message on the console;

  • stop: stops the swapfile, logs the action on syslog and displays a message on the console;

  • restart: stops and restarts the swapfile, logs both actions on syslog and displays a message on the console;

  • create: if there is enough storage space in the device, and no swap memory already in use, it creates a swapfile which has the same size as the device's RAM and enables it to run at boot time;

  • status: checks the status of the swapfile, and is capable of detecting if swap memory is alredy present;

  • enable: enables the swapfile service, so it WILL run at boot time;

  • disable: disables the swapfile service, so it WILL NOT run at boot time;