[PATCH] remove "#if 0" from util-linux/ directory

Robert P. J. Day rpjday at mindspring.com
Sat Mar 25 23:12:39 UTC 2006


diff -pru busybox.orig/util-linux/fdisk.c busybox/util-linux/fdisk.c
--- busybox.orig/util-linux/fdisk.c	2006-03-25 17:07:21.000000000 -0500
+++ busybox/util-linux/fdisk.c	2006-03-25 18:11:25.000000000 -0500
@@ -1452,10 +1452,6 @@ xbsd_initlabel(struct partition *p, stru
 	else
 		d->d_type = BSD_DTYPE_ST506;

-#if 0 /* not used (at least not written to disk) by NetBSD/i386 1.0 */
-	d->d_subtype = BSD_DSTYPE_INDOSPART & pindex;
-#endif
-
 #if !defined (__alpha__)
 	d->d_flags = BSD_D_DOSPART;
 #else
@@ -2614,14 +2610,10 @@ sun_autoconfigure_scsi(void)
 	if (!ioctl(fd, SCSI_IOCTL_GET_IDLUN, &id)) {
 		sprintf(buffer,
 			"Host: scsi%d Channel: %02d Id: %02d Lun: %02d\n",
-#if 0
-			((id[0]>>24)&0xff)-/*PROC_SCSI_SCSI+PROC_SCSI_FILE*/33,
-#else
 			/* This is very wrong (works only if you have one HBA),
 			   but I haven't found a way how to get hostno
 			   from the current kernel */
 			0,
-#endif
 			(id[0]>>16) & 0xff,
 			id[0] & 0xff,
 			(id[0]>>8) & 0xff
@@ -4658,25 +4650,10 @@ check_consistency(const struct partition
 		printf(_("logical=(%d, %d, %d)\n"),lec, leh, les);
 	}

-#if 0
-/* Beginning on cylinder boundary? */
-	if (pbh != !pbc || pbs != 1) {
-		printf(_("Partition %i does not start on cylinder "
-			"boundary:\n"), partition + 1);
-		printf(_("     phys=(%d, %d, %d) "), pbc, pbh, pbs);
-		printf(_("should be (%d, %d, 1)\n"), pbc, !pbc);
-	}
-#endif
-
 /* Ending on cylinder boundary? */
 	if (peh != (heads - 1) || pes != sectors) {
 		printf(_("Partition %i does not end on cylinder boundary.\n"),
 			partition + 1);
-#if 0
-		printf(_("     phys=(%d, %d, %d) "), pec, peh, pes);
-		printf(_("should be (%d, %d, %d)\n"),
-		pec, heads - 1, sectors);
-#endif
 	}
 }

@@ -5750,14 +5727,9 @@ int fdisk_main(int argc, char **argv)
 		}
 	}

-#if 0
-	printf(_("This kernel finds the sector size itself - "
-		 "-b option ignored\n"));
-#else
 	if (user_set_sector_size && argc-optind != 1)
 		printf(_("Warning: the -b (set sector size) option should"
 			 " be used with one specified device\n"));
-#endif

 #ifdef CONFIG_FEATURE_FDISK_WRITABLE
 	if (optl) {
diff -pru busybox.orig/util-linux/mkswap.c busybox/util-linux/mkswap.c
--- busybox.orig/util-linux/mkswap.c	2006-03-25 17:07:21.000000000 -0500
+++ busybox/util-linux/mkswap.c	2006-03-25 18:11:48.000000000 -0500
@@ -334,9 +334,6 @@ int mkswap_main(int argc, char **argv)
 				(long) (10 * pagesize / 1024));
 		bb_show_usage();
 	}
-#if 0
-	maxpages = ((version == 0) ? V0_MAX_PAGES : V1_MAX_PAGES);
-#else
 	if (!version)
 		maxpages = V0_MAX_PAGES;
 	else if (get_kernel_revision() >= MAKE_VERSION(2, 2, 1))
@@ -346,7 +343,6 @@ int mkswap_main(int argc, char **argv)
 		if (maxpages > V1_MAX_PAGES)
 			maxpages = V1_MAX_PAGES;
 	}
-#endif
 	if (PAGES > maxpages) {
 		PAGES = maxpages;
 		bb_error_msg("warning: truncating swap area to %ldkB",

Signed off by:  Robert P. J. Day <rpjday at mindspring.com>



More information about the busybox mailing list