summaryrefslogtreecommitdiffstats
path: root/target/linux/x86/image
Commit message (Collapse)AuthorAgeFilesLines
* x86: drop the use of block2mtd, use ext4/f2fs as overlay filesystemFelix Fietkau2016-09-101-16/+2
| | | | Signed-off-by: Felix Fietkau <nbd@nbd.name>
* x86: remove obsolete reference to $(PROFILE)Felix Fietkau2016-07-201-1/+0
| | | | Signed-off-by: Felix Fietkau <nbd@nbd.name>
* x86: stop relying on hexdump for image build signatureFelix Fietkau2016-07-031-1/+1
| | | | | | | Use perl to generate random number instead. See https://github.com/freifunk-gluon/gluon/issues/811 Signed-off-by: Felix Fietkau <nbd@nbd.name>
* x86: remove defunct etherboot image building codeFelix Fietkau2016-05-121-7/+0
| | | | Signed-off-by: Felix Fietkau <nbd@nbd.name>
* x86: remove obsolete Config.in fileFelix Fietkau2016-05-121-14/+0
| | | | Signed-off-by: Felix Fietkau <nbd@nbd.name>
* x86: remove legacy script/makefile code for rdc devicesFelix Fietkau2016-05-123-85/+0
| | | | Signed-off-by: Felix Fietkau <nbd@nbd.name>
* x86: enable grub at_keyboard support for x86_64Felix Fietkau2016-05-121-1/+1
| | | | Signed-off-by: Felix Fietkau <nbd@nbd.name>
* branding: add LEDE brandingJohn Crispin2016-03-242-3/+3
| | | | Signed-off-by: John Crispin <blogic@openwrt.org>
* build: Prevent more gzip timestampsJohn Crispin2015-07-141-2/+2
| | | | | | | | | To improve reproducibility, prevent the inclusion of timestamps in the gzip header. Signed-off-by: Reiner Herrmann <reiner@reiner-h.de> SVN-Revision: 46361
* all: replace genext2fs with make_ext4fsJo-Philipp Wich2015-04-201-4/+2
| | | | | | Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 45517
* x86: remove bogus bzImage copy that breaks initramfs+no-initramfs buildsFelix Fietkau2015-03-291-1/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45114
* x86: remove the olpc subtarget, it has been unmaintained for a long timeFelix Fietkau2015-03-284-80/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45083
* x86: use PARTUUID instead explicitly specifying the device by defaultJo-Philipp Wich2015-03-242-2/+4
| | | | | | | | | | | | | This changes the x86 image generation to match x86_64, using the PARTUUID for the rootfs instead of explicitly configuring the device. It unbreaks KVM with VirtIO, which uses /dev/vda2 instead of /dev/sda2. Tested in QEMU/KVM with VirtIO, VirtualBox and VMware. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net> SVN-Revision: 44966
* x86: disable rts/cts for serial console in grub - fixes net48xx boot issuesFelix Fietkau2015-03-141-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44753
* x86: remove the arbitrary limitation of vmware/virtualbox images to ext4, ↵Felix Fietkau2014-07-201-16/+10
| | | | | | | | select TARGET_IMAGES_PAD instead Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 41763
* x86: try harder to attach block2mtd to fix boot issues on devices with ↵Felix Fietkau2014-04-101-3/+3
| | | | | | | | longer delays Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 40444
* move most of the x86 image generation options to the main fileImre Kaloz2014-01-072-90/+9
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 39206
* For now vdi and vmdk images should be x86 onlyImre Kaloz2013-11-221-0/+2
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 38896
* VMWare and VirtualBox images should select what they need, not depend on it..Imre Kaloz2013-11-221-4/+4
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 38892
* rationalize target image optionsImre Kaloz2013-11-221-3/+1
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 38891
* x86: Fix CONFIG_X86_GRUB_SERIAL=""Felix Fietkau2013-08-101-2/+4
| | | | | | | | | | | | | | | | | | | | With .config:CONFIG_X86_GRUB_SERIAL="" which (AFAICT) is the way to tell GRUB not to use a serial console, in target/linux/x86/image/Makefile:ifneq ($(CONFIG_X86_GRUB_SERIAL),) $(CONFIG_X86_GRUB_SERIAL) expands to `""' (a literal double double-quote), making the condition unconditionally false. This patch fixes the situation by passing CONFIG_X86_GRUB_SERIAL through qstrip before testing. Signed-off-by: Tamas TEVESZ <ice@extreme.hu> SVN-Revision: 37749
* targets: prepare for supporting normal and initramfs imagesFlorian Fainelli2013-06-271-1/+1
| | | | | | | | | | | | In order to support both normal images and initramfs, ensure that each target sets KERNELNAME properly so that the generic kernel building code can copy the corresponding files over $(KDIR) with the appropriate extension. Update the various paths to the kernel and wrapper images from $(LINUX_DIR)/arch/$(ARCH)/boot/$(foo) to $(KDIR)/$(foo). Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 37049
* build: consistently use 'depends on' instead of 'depends'Felix Fietkau2013-04-171-21/+21
| | | | | | | | make the syntax more compatible with kernel menuconfig Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36351
* x86: explicitely pass staging directory to grub-mkimage instead of relying ↵Jo-Philipp Wich2013-01-171-0/+2
| | | | | | on build time defaults (#12821) SVN-Revision: 35200
* x86: use $(strip) for the at_keyboard checkFelix Fietkau2012-11-091-1/+1
| | | | SVN-Revision: 34127
* x86: only enable at_keyboard for the generic and kvm_guest subtargets to ↵Felix Fietkau2012-11-091-2/+9
| | | | | | avoid hangs on alix2 and others (thx, russell) SVN-Revision: 34126
* merge the RDC R-321x target as a subtarget of x86Florian Fainelli2012-10-154-1/+94
| | | | SVN-Revision: 33779
* x86: remove the reboot=bios command line parameter (#12193)Felix Fietkau2012-10-092-3/+3
| | | | SVN-Revision: 33671
* x86: rename the iso file to openwrt-x86-generic.isoFelix Fietkau2012-10-071-1/+3
| | | | SVN-Revision: 33641
* x86: remove grub-legacyFelix Fietkau2012-10-074-93/+6
| | | | SVN-Revision: 33640
* x86: add grub2 iso supportFelix Fietkau2012-10-072-3/+39
| | | | SVN-Revision: 33639
* x86: avoid using grub prepare when using grub2Felix Fietkau2012-09-231-1/+1
| | | | SVN-Revision: 33525
* x86: add support for building grub2 imagesFelix Fietkau2012-09-224-3/+56
| | | | SVN-Revision: 33513
* x86: split generic image building into a separate scriptFelix Fietkau2012-09-222-36/+40
| | | | SVN-Revision: 33511
* x86: rename gen_image_x86.sh to gen_image_grub.shFelix Fietkau2012-09-222-1/+1
| | | | SVN-Revision: 33510
* use ttyS0 @ 115200 baud as default for KVM guestsJo-Philipp Wich2012-06-151-3/+3
| | | | SVN-Revision: 32384
* x86: image: select bootscript images by default for OLPCGabor Juhos2012-05-181-0/+1
| | | | SVN-Revision: 31783
* PATCH: Disable console terminal in Grub for alix2 targetJo-Philipp Wich2012-04-121-1/+1
| | | | | | | | | | | The alix2 target has the VGA console for grub enabled by default. This prevents the grub menu from appearing on bootup. It is disabled by default for the other embedded x86 platforms. This patch corrects that behavior for the alix2 target. Signed-off-by: Adam Gensler <openwrt@kristenandadam.net> SVN-Revision: 31270
* Disable by default padding of imagesVasilis Tsiligiannis2012-02-161-1/+0
| | | | SVN-Revision: 30590
* Allow gzipping of squashfs images with padded jffs2 partitionVasilis Tsiligiannis2012-02-161-0/+3
| | | | SVN-Revision: 30589
* GZip only ext4 and padded imagesVasilis Tsiligiannis2012-02-162-4/+7
| | | | SVN-Revision: 30588
* Make gzipping of images configurable via menuconfigVasilis Tsiligiannis2012-02-162-5/+23
| | | | SVN-Revision: 30587
* Make the grub timeout configurable on x86 targetsJo-Philipp Wich2012-01-193-1/+11
| | | | | | Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de> SVN-Revision: 29786
* x86: allow VDI & VMDK images for all subtargets (closes: #10255)Nicolas Thill2011-10-221-2/+2
| | | | SVN-Revision: 28518
* * adds support for Artec ThincanJohn Crispin2011-05-172-0/+22
| | | | | | Signed-of-By: Lauri Võsandi <lauri.vosandi@gmail.com> SVN-Revision: 26919
* This patch provides an image suitable for the alix2*, alix3, and alix6 ↵Daniel Dickinson2011-05-131-0/+1
| | | | | | | | | | | | | | | | | | | headless (non-VGA equipped) SBC's. Note that the Alix6 uses GPIO 27 to disable wireless transmit (W_DIS#), whereas on all other versions this is used to actuate the speaker. GPIO 1 : SIM select (Alix6) GPIO 6 : LED1 GPIO 25 : LED2 GPIO 27 : LED3 or RFKILL (Alix6) GPIO 24 : Soft switch 1 No kernel version bump. Added i2c-scx200-acb for lm-sensors support. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> SVN-Revision: 26879
* gzip jffs2 images Signed-off-by: Vasilis Tsiligiannis ↵Jo-Philipp Wich2011-04-121-1/+1
| | | | | | <b_tsiligiannis@silverton.gr> SVN-Revision: 26625
* Enable padding of jffs2 images to user specified filesystem size ↵Jo-Philipp Wich2011-04-121-0/+1
| | | | | | Signed-off-by: Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr> SVN-Revision: 26624
* * Make sure that Geos baud-rate defaults correctly Changeset 23414 somehow ↵John Crispin2011-01-221-1/+1
| | | | | | | | got reordered. The unconditional default trumps later settings. contributed by Philip Prindeville SVN-Revision: 25068
* switch from ext2 to ext4 (w/o) journalingImre Kaloz2010-11-222-11/+11
| | | | SVN-Revision: 24084