summaryrefslogtreecommitdiffstats
path: root/platforms
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2018-05-30 17:59:13 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-05-30 17:59:13 +0200
commitef5aca6edba568cbe4980d714963f8c5517cffce (patch)
tree4c39a4314221b6fe2efe1e5dfa7a4376a540ae23 /platforms
parentd86eba7179c90cbef1e602590c3ffe6ef7cf5732 (diff)
downloadptxdist-ef5aca6edba568cbe4980d714963f8c5517cffce.tar.gz
ptxdist-ef5aca6edba568cbe4980d714963f8c5517cffce.tar.xz
platforms: remove obsolete hd image rule
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/image_hd.in151
-rw-r--r--platforms/image_hd_content.in23
2 files changed, 0 insertions, 174 deletions
diff --git a/platforms/image_hd.in b/platforms/image_hd.in
deleted file mode 100644
index f47dc19c0..000000000
--- a/platforms/image_hd.in
+++ /dev/null
@@ -1,151 +0,0 @@
-## SECTION=image
-
-menuconfig IMAGE_HD
- bool
- select IMAGE_EXT2
- select HOST_GENPART
- prompt "Generate images/hd.img "
- help
- General
- -------
-
- Build a harddisk root image. The image will contain a partition
- table defined by the following entries. Note that the resulting
- partition table does not have CHS entries but only LBA entries, so
- you need to switch your (x86-) Bios to LBA. Also note that fdisk will
- complain about inconsistent CHS/LBA entries. You can ignore these warnings.
- The ptxdist image will be put into the first partition.
-
- Partition sizes
- ---------------
-
- You can define a partition by giving the first and the last sector of
- each partition. Sectors are units of 512 bytes. The first sector (sector 0)
- is reserved for the MBR and the partition table.
- Sectors can be given either decimal or in hex prefixed with 0x.
- Beware that a 256MB flash card does not have exactly 256 * 1024 * 2 sectors
- but slightly less.
-
- Partition types
- ---------------
-
- You can give the partition types as a decimal or hex (prefixed with 0x) value
- See at the output of "sfdisk -T" for a list of valid types. No extended
- partitions are supported at the moment.
-
- grub
- ----
-
- If you select grub in your config, it will be installed on the image and thus
- give a bootable image for x86 PCs. The grub stage2 file will be installed right
- after the MBR before the first partition, so you need to leave a hole before the
- first partition. Starting the partition on sector 300 should be a safe value.
-
-if IMAGE_HD
-
-config IMAGE_HD_PART1
- bool
- default y
-
-config IMAGE_HD_PART1_START
- string
- prompt "partition 1 start sector"
- help
- see Generate images/hd.img
-
-config IMAGE_HD_PART1_END
- string
- prompt "partition 1 end sector"
- help
- see Generate images/hd.img
-
-config IMAGE_HD_PART1_TYPE
- string
- default "0x83"
- depends on IMAGE_HD_PART1
- prompt "partition 1 type"
- help
- see Generate images/hd.img
-
-config IMAGE_HD_PART2
- bool
- depends on IMAGE_HD
- prompt "Create partition 2"
-
-config IMAGE_HD_PART2_START
- string
- depends on IMAGE_HD_PART2
- prompt "partition 2 start sector"
- help
- see Generate images/hd.img
-
-config IMAGE_HD_PART2_END
- string
- depends on IMAGE_HD_PART2
- prompt "partition 2 end sector"
- help
- see Generate images/hd.img
-
-config IMAGE_HD_PART2_TYPE
- string
- default "0x83"
- depends on IMAGE_HD_PART2
- prompt "partition 2 type"
- help
- see Generate images/hd.img
-
-config IMAGE_HD_PART3
- bool
- depends on IMAGE_HD_PART2
- prompt "Create partition 3"
-
-config IMAGE_HD_PART3_START
- string
- depends on IMAGE_HD_PART3
- prompt "partition 3 start sector"
- help
- see Generate images/hd.img
-
-config IMAGE_HD_PART3_END
- string
- depends on IMAGE_HD_PART3
- prompt "partition 3 end sector"
- help
- see Generate images/hd.img
-
-config IMAGE_HD_PART3_TYPE
- string
- default "0x83"
- depends on IMAGE_HD_PART3
- prompt "partition 3 type"
- help
- see Generate images/hd.img
-
-config IMAGE_HD_PART4
- bool
- depends on IMAGE_HD_PART3
- prompt "Create partition 4"
-
-config IMAGE_HD_PART4_START
- string
- depends on IMAGE_HD_PART4
- prompt "partition 4 start sector"
- help
- see Generate images/hd.img
-
-config IMAGE_HD_PART4_END
- string
- depends on IMAGE_HD_PART4
- prompt "partition 4 end sector"
- help
- see Generate images/hd.img
-
-config IMAGE_HD_PART4_TYPE
- string
- default "0x83"
- depends on IMAGE_HD_PART4
- prompt "partition 4 type"
- help
- see Generate images/hd.img
-
-endif
diff --git a/platforms/image_hd_content.in b/platforms/image_hd_content.in
deleted file mode 100644
index e84bff2ce..000000000
--- a/platforms/image_hd_content.in
+++ /dev/null
@@ -1,23 +0,0 @@
-## SECTION=image
-
-config IMAGE_HD_PART1_CONTENT
- string
- depends on IMAGE_HD_PART1
- default "${IMAGEDIR}/linuximage" if BAREBOX
- default "${IMAGEDIR}/root.ext2" if !BAREBOX
-
-config IMAGE_HD_PART2_CONTENT
- string
- depends on IMAGE_HD_PART2
- default "${IMAGEDIR}/root.ext2" if BAREBOX
-
-config IMAGE_HD_PART3_CONTENT
- string
- depends on IMAGE_HD_PART3
- default ""
-
-config IMAGE_HD_PART4_CONTENT
- string
- depends on IMAGE_HD_PART4
- default ""
-