2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-07-16 13:47:03 +05:30
|
|
|
/* mkswap.c - format swap device (Linux v1 only)
|
1999-10-05 21:54:54 +05:30
|
|
|
*
|
2006-07-16 13:47:03 +05:30
|
|
|
* Copyright 2006 Rob Landley <rob@landley.net>
|
1999-10-20 01:33:34 +05:30
|
|
|
*
|
2006-09-22 08:22:41 +05:30
|
|
|
* Licensed under GPL version 2, see file LICENSE in this tarball for details.
|
2006-03-29 23:02:24 +05:30
|
|
|
*/
|
1999-10-20 01:33:34 +05:30
|
|
|
|
2006-07-16 13:47:03 +05:30
|
|
|
#include <busybox.h>
|
1999-10-20 01:33:34 +05:30
|
|
|
|
2006-07-16 13:47:03 +05:30
|
|
|
int mkswap_main(int argc, char *argv[])
|
2000-02-09 01:28:47 +05:30
|
|
|
{
|
2006-07-16 13:47:03 +05:30
|
|
|
int fd, pagesize;
|
|
|
|
off_t len;
|
|
|
|
unsigned int hdr[129];
|
1999-10-20 01:33:34 +05:30
|
|
|
|
2006-07-16 13:47:03 +05:30
|
|
|
// No options supported.
|
1999-10-20 01:33:34 +05:30
|
|
|
|
2006-07-16 13:47:03 +05:30
|
|
|
if (argc!=2) bb_show_usage();
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2006-07-16 13:47:03 +05:30
|
|
|
// Figure out how big the device is and announce our intentions.
|
2006-09-17 21:58:10 +05:30
|
|
|
|
2006-08-03 21:11:12 +05:30
|
|
|
fd = xopen(argv[1],O_RDWR);
|
2006-07-16 13:47:03 +05:30
|
|
|
len = fdlength(fd);
|
|
|
|
pagesize = getpagesize();
|
|
|
|
printf("Setting up swapspace version 1, size = %ld bytes\n", (long)(len-pagesize));
|
1999-10-20 01:33:34 +05:30
|
|
|
|
2006-07-16 13:47:03 +05:30
|
|
|
// Make a header.
|
1999-10-20 01:33:34 +05:30
|
|
|
|
2006-07-16 13:47:03 +05:30
|
|
|
memset(hdr, 0, 129 * sizeof(unsigned int));
|
|
|
|
hdr[0] = 1;
|
|
|
|
hdr[1] = (len / pagesize) - 1;
|
1999-10-20 01:33:34 +05:30
|
|
|
|
2006-07-16 13:47:03 +05:30
|
|
|
// Write the header. Sync to disk because some kernel versions check
|
|
|
|
// signature on disk (not in cache) during swapon.
|
1999-10-20 01:33:34 +05:30
|
|
|
|
2006-07-16 13:47:03 +05:30
|
|
|
xlseek(fd, 1024, SEEK_SET);
|
|
|
|
xwrite(fd, hdr, 129 * sizeof(unsigned int));
|
|
|
|
xlseek(fd, pagesize-10, SEEK_SET);
|
|
|
|
xwrite(fd, "SWAPSPACE2", 10);
|
|
|
|
fsync(fd);
|
1999-10-20 01:33:34 +05:30
|
|
|
|
2006-07-16 13:47:03 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) close(fd);
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2006-07-16 13:47:03 +05:30
|
|
|
return 0;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|