summaryrefslogtreecommitdiffstats
path: root/platforms
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2018-05-30 18:02:42 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-05-30 18:02:42 +0200
commit37c5695f4d99d27332e7b64268455c4c15d15351 (patch)
tree7019c2c218d76ca8bcc8403b01ea249656c8051c /platforms
parentef5aca6edba568cbe4980d714963f8c5517cffce (diff)
downloadptxdist-37c5695f4d99d27332e7b64268455c4c15d15351.tar.gz
ptxdist-37c5695f4d99d27332e7b64268455c4c15d15351.tar.xz
platforms: remove obsolete uRamdisk image rule
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/image_uimage.in63
1 files changed, 0 insertions, 63 deletions
diff --git a/platforms/image_uimage.in b/platforms/image_uimage.in
deleted file mode 100644
index 77591102f..000000000
--- a/platforms/image_uimage.in
+++ /dev/null
@@ -1,63 +0,0 @@
-## SECTION=image
-
-menuconfig IMAGE_UIMAGE
- bool
- prompt "Generate images/uRamdisk "
- select HOST_U_BOOT_TOOLS
- help
- The file images/uRamdisk can be loaded separatly by the bootloader U-Boot
-
-if IMAGE_UIMAGE
-
-choice
- prompt "Type of uRamdisk"
- default IMAGE_UIMAGE_RAMDISK
- help
- specify the type of the uRamdisk that is used.
-
-config IMAGE_UIMAGE_RAMDISK
- bool
- prompt "ramdisk"
- select IMAGE_EXT2
- select IMAGE_EXT2_GZIP
- help
- Use a gzip-compressed ext2 ramdisk image.
-
-config IMAGE_UIMAGE_INITRAMFS
- bool
- prompt "initramfs"
- select IMAGE_CPIO
- select IMAGE_CPIO_GZ
- help
- Use a gzip-compressed initramfs (cpio).
-
-endchoice
-
-config IMAGE_UIMAGE_NAME
- string
- default "Application Ramdisk"
- prompt "name of the ramdisk image"
- help
- FIXME: This item needs to be documented
-
-config IMAGE_UIMAGE_EXTRA_ARGS
- string
- default ""
- prompt "extra arguments passed to mkimage"
- help
- If needed you can add extra arguments for mkimage here
- (e.g. -a 0xaa00000 -e 0xaa00000 )
-
-# TODO: See comment in rules/post/images.make for this topic
-#config IMAGE_UIMAGE_MULTI
-# bool
-# prompt "Generate a multi image images/muimage"
-# select HOST_U_BOOT_TOOLS
-# select KERNEL
-# select IMAGE_CPIO
-# help
-# This generates a multi content image to be loaded by
-# the bootloader U-Boot. It contains the kernel and the
-# RAM disk in one image.
-
-endif