Commit 40e0e5686accd2f7ae7fd81297620d0e132624d9

Authored by Rob Herring
Committed by Tom Rini
1 parent 7405a13310
Exists in master and in 57 other branches 8qm-imx_v2020.04_5.4.70_2.3.0, emb_lf-6.6.52-2.2.0, emb_lf_v2022.04, emb_lf_v2023.04, emb_lf_v2024.04, imx_v2015.04_4.1.15_1.0.0_ga, pitx_8mp_lf_v2020.04, smarc-8m-android-10.0.0_2.6.0, smarc-8m-android-11.0.0_2.0.0, smarc-8mp-android-11.0.0_2.0.0, smarc-emmc-imx_v2014.04_3.10.53_1.1.0_ga, smarc-emmc-imx_v2014.04_3.14.28_1.0.0_ga, smarc-imx-l5.0.0_1.0.0-ga, smarc-imx6_v2018.03_4.14.98_2.0.0_ga, smarc-imx7_v2017.03_4.9.11_1.0.0_ga, smarc-imx7_v2018.03_4.14.98_2.0.0_ga, smarc-imx_v2014.04_3.14.28_1.0.0_ga, smarc-imx_v2015.04_4.1.15_1.0.0_ga, smarc-imx_v2017.03_4.9.11_1.0.0_ga, smarc-imx_v2017.03_4.9.88_2.0.0_ga, smarc-imx_v2017.03_o8.1.0_1.3.0_8m, smarc-imx_v2018.03_4.14.78_1.0.0_ga, smarc-m6.0.1_2.1.0-ga, smarc-n7.1.2_2.0.0-ga, smarc-rel_imx_4.1.15_2.0.0_ga, smarc_8m-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8m-imx_v2019.04_4.19.35_1.1.0, smarc_8m_00d0-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8mm-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8mm-imx_v2019.04_4.19.35_1.1.0, smarc_8mm-imx_v2020.04_5.4.24_2.1.0, smarc_8mp_lf_v2020.04, smarc_8mq-imx_v2020.04_5.4.24_2.1.0, smarc_8mq_lf_v2020.04, ti-u-boot-2015.07, u-boot-2013.01.y, v2013.10, v2013.10-smarct33, v2013.10-smartmen, v2014.01, v2014.04, v2014.04-smarct33, v2014.04-smarct33-emmc, v2014.04-smartmen, v2014.07, v2014.07-smarct33, v2014.07-smartmen, v2015.07-smarct33, v2015.07-smarct33-emmc, v2015.07-smarct4x, v2016.05-dlt, v2016.05-smarct3x, v2016.05-smarct3x-emmc, v2016.05-smarct4x, v2017.01-smarct3x, v2017.01-smarct3x-emmc, v2017.01-smarct4x

disk/part: check bootable flag for DOS partitions

Determine which partitions are bootable/active. In the partition listing,
print "Boot" for partitions with the bootable/active flag set.

Signed-off-by: Rob Herring <rob.herring@calxeda.com>

Showing 2 changed files with 10 additions and 2 deletions Side-by-side Diff

... ... @@ -60,14 +60,20 @@
60 60 part_type == 0x85);
61 61 }
62 62  
  63 +static inline int is_bootable(dos_partition_t *p)
  64 +{
  65 + return p->boot_ind == 0x80;
  66 +}
  67 +
63 68 static void print_one_part (dos_partition_t *p, int ext_part_sector, int part_num)
64 69 {
65 70 int lba_start = ext_part_sector + le32_to_int (p->start4);
66 71 int lba_size = le32_to_int (p->size4);
67 72  
68   - printf ("%5d\t\t%10d\t%10d\t%2x%s\n",
  73 + printf("%5d\t\t%10d\t%10d\t%2x%s%s\n",
69 74 part_num, lba_start, lba_size, p->sys_ind,
70   - (is_extended (p->sys_ind) ? " Extd" : ""));
  75 + (is_extended(p->sys_ind) ? " Extd" : ""),
  76 + (is_bootable(p) ? " Boot" : ""));
71 77 }
72 78  
73 79 static int test_block_type(unsigned char *buffer)
... ... @@ -222,6 +228,7 @@
222 228 }
223 229 /* sprintf(info->type, "%d, pt->sys_ind); */
224 230 sprintf ((char *)info->type, "U-Boot");
  231 + info->bootable = is_bootable(pt);
225 232 return 0;
226 233 }
227 234  
... ... @@ -93,6 +93,7 @@
93 93 ulong blksz; /* block size in bytes */
94 94 uchar name[32]; /* partition name */
95 95 uchar type[32]; /* string type description */
  96 + int bootable; /* Active/Bootable flag is set */
96 97 } disk_partition_t;
97 98  
98 99 /* Misc _get_dev functions */