*** coreutils-8.32/src/df.c 2020-01-01 07:29:37.000000000 -0700 --- coreutils-8.32-gdg1/src/df.c 2020-09-06 07:15:28.842689578 -0600 *************** *** 1627,1631 **** break; case 'H': ! human_output_opts = human_autoscale | human_SI; output_block_size = 1; break; --- 1627,1632 ---- break; case 'H': ! // GDG: Add 'human_B' ! human_output_opts = human_autoscale | human_SI | human_B; output_block_size = 1; break; *** coreutils-8.32/src/du.c 2020-01-01 07:34:20.000000000 -0700 --- coreutils-8.32-gdg1/src/du.c 2020-09-06 08:07:01.619267684 -0600 *************** *** 798,802 **** case HUMAN_SI_OPTION: ! human_output_opts = human_autoscale | human_SI; output_block_size = 1; break; --- 798,803 ---- case HUMAN_SI_OPTION: ! // GDG: Add human_B ! human_output_opts = human_autoscale | human_SI | human_B; output_block_size = 1; break; *** coreutils-8.32/src/ls.c 2020-03-01 05:30:46.000000000 -0700 --- coreutils-8.32-gdg1/src/ls.c 2020-09-06 09:30:39.371619899 -0600 *************** *** 2267,2272 **** case SI_OPTION: file_human_output_opts = human_output_opts = ! human_autoscale | human_SI; file_output_block_size = output_block_size = 1; break; --- 2267,2273 ---- case SI_OPTION: + // GDG: Add human_B file_human_output_opts = human_output_opts = ! human_autoscale | human_SI | human_B; file_output_block_size = output_block_size = 1; break; *** coreutils-8.32/lib/human.c 2020-01-01 07:14:23.000000000 -0700 --- coreutils-8.32-gdg1/lib/human.c 2020-09-06 07:26:12.465546556 -0600 *************** *** 400,404 **** { human_autoscale + human_SI + human_base_1024, ! human_autoscale + human_SI }; --- 400,405 ---- { human_autoscale + human_SI + human_base_1024, ! // GDG: Add human_B ! human_autoscale + human_SI + human_B };