Thread
:
Has anyone sucessfuly got bootmenu to work with a WIMAX?
View Single Post
tz1
2009-01-13 , 15:00
Posts: 716 | Thanked: 236 times | Joined on Dec 2007
#
25
Swap partitions
First figure out which device/partition is swap (cat /proc/partitions is helpful).
Run the following command (as root, filling in X an Y with the correct values):
mkswap /dev/mmcblkXpY
use an editor to add this line to the /etc/fstab file on root partitions:
/dev/mmcblkXpY none swap swap priority=-1 0 0
then enter the following command
swapon -a
/proc/swaps should now show the partition and /proc/meminfo and such should reflect the swap space. To get it to happen automatically each bootup, you need to add something to /etc/init.d with proper symlink /etc/rc2.d
(e.g. /etc/init.d/doswap with just "swapon -a", and /etc/rc2.d/S99doswap symlinked to doswap).
Quote & Reply
|
The Following User Says Thank You to tz1 For This Useful Post:
tomstratton
tz1
View Public Profile
Send a private message to tz1
Find all posts by tz1