summaryrefslogtreecommitdiffstats
path: root/target/linux/x86/image
Commit message (Collapse)AuthorAgeFilesLines
* target/linux: fix Geos baudrate. (thank you Philip Prindeville)acoul2010-10-121-1/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23414 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [Patch v2] Geos -- new x86 subtarget definitionjow2010-10-101-2/+2
| | | | | | | | | | | | | This defines the Geos platform from Traverse Technologies in AUS. This is a Geode LX800 with 512MB of DDR400 memory, 2 8139CP interfaces, 2 Solos ADSL2+ interfaces, USB, serial console, CF slot, and miniPCI slot. I'll add support for the LEDs separately. Signed-off-by: Philip A. Prindeville git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23390 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] adjust image defaults for KVMjow2010-09-061-3/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22950 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] image: use internal qemu-img for vmdk and vdi imagesagb2010-08-092-17/+1
| | | | | | drop host dependencies on qemu-utils and VirtualBox git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22553 3c298f89-4303-0410-b956-a3cf2f4a3e73
* x86: build fully functional images on Mac OS X, now that grub is fixednbd2010-05-281-11/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21609 3c298f89-4303-0410-b956-a3cf2f4a3e73
* image/x86: fix typo when building on Mac OS X (closes: #7303)nico2010-05-081-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21401 3c298f89-4303-0410-b956-a3cf2f4a3e73
* target/x86: cleanup image config optionsnico2010-05-051-40/+40
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21365 3c298f89-4303-0410-b956-a3cf2f4a3e73
* target/x86: use common config items for options shared between generic and ↵nico2010-05-052-41/+22
| | | | | | olpc targets git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21364 3c298f89-4303-0410-b956-a3cf2f4a3e73
* images: rename CONFIG_TARGET_ROOTFS_FSPART to CONFIG_TARGET_ROOTFS_PARTSIZEnico2010-05-051-3/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21362 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/grub: build a host grub and a target grub (#7269)nico2010-05-021-6/+9
| | | | | | | | | - use the host grub binary for grub install, but with target stage files - disable SSP (-fno-stack-protector) & Compile Time Buffer Checks (-U_FORTIFY_SOURCE) if appropriate - create a target grub package git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21305 3c298f89-4303-0410-b956-a3cf2f4a3e73
* target/x86: add to changes missed from [21246] preventing .vdi & .vmdk image ↵nico2010-04-301-2/+2
| | | | | | generation git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21277 3c298f89-4303-0410-b956-a3cf2f4a3e73
* target/x86: various image changesnico2010-04-291-9/+13
| | | | | | | | | | * add a -combined suffix for grub+kernel+rootfs images and -rootfs for root filesystem only images * change ext from .image to .img * fix perms on VirtualBox .vdi image * gzip ext2 rootfs image as well git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21246 3c298f89-4303-0410-b956-a3cf2f4a3e73
* target/x86: rearrange image Makefile, indent, reorder, simplify, change some ↵nico2010-04-291-67/+77
| | | | | | ifeq/ifneq tests git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21245 3c298f89-4303-0410-b956-a3cf2f4a3e73
* target/x86: remove temporary files in image generation scriptsnico2010-04-292-4/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21243 3c298f89-4303-0410-b956-a3cf2f4a3e73
* replace old quote stripping with calls to qstrip macronico2010-04-291-6/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21242 3c298f89-4303-0410-b956-a3cf2f4a3e73
* define a shared IMG_PREFIX variable used as a basename for image files, it ↵nico2010-04-121-12/+12
| | | | | | contains board & subtarget infos (if appropriate) allowing subtargets to share the same bin directory without overwriting each other's files git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20834 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] add net5501 supportflorian2010-04-111-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch brings up the net5501 platform. Note that the x86/ target included support for all x86/ class processors. That's not technically correct. This should be constrained only to the "generic" subtarget. Every x86-class target that isn't generic should be able to select only the optimizations/capabilities applicable to that architectural variant. It's also assumed that all x86 processors have keyboard & mouse ports, ISA, DMI, ACPI... the embedded ones typically don't. Again, moving that to the generic subtarget. Fortunately, this was a fairly benign tweak. The net5501 board includes the following logic: Geode/LX processor CS5535 super-I/O chip PC87360 sensor chip Via Rhine Ethernet controllers Via Sata controllers USB, LEDS, I2C Signed-off-by: Philip Prindeville <philipp_subx@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20794 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86]jow2010-02-173-14/+41
| | | | | | | | | | - clean up menu.lst template - make grub usage of vt0 selectable in menuconfig - choose appropriate default baudrate for soekris devices - fix generation of grub menu for iso images git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19681 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] make console port editable through menuconfig, gzip ext2 images, add ↵jow2010-02-123-8/+24
| | | | | | suitable defaults for Xen git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19612 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove handling of older unsupported kernelskaloz2009-12-271-1/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18955 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] add rootwait option to the kernel command line (#6209)florian2009-12-061-4/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18672 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix grub image target dependencykaloz2009-11-181-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18446 3c298f89-4303-0410-b956-a3cf2f4a3e73
* change x86 image generation handling to treat only olpc speciallykaloz2009-11-172-6/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18441 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] merge the olpc target with the x86 target, both tested and runningflorian2009-11-035-5/+111
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18279 3c298f89-4303-0410-b956-a3cf2f4a3e73
* x86: use libata in 2.6.30, fix pata support for sc1200 (used on wrap)nbd2009-09-251-1/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17722 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make kernels use /etc/preinit by defaultkaloz2009-05-141-4/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15840 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Fix building of iso filesystemjow2009-05-071-2/+5
| | | | | | | | | | | | | This fixes two errors when building iso filesystem: a) dir root.grub/boot doesn't get created. b) the creation of .image file by gen_image.sh which apparently is not needed when building an iso. Signed-off-by: Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15682 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] The image was selected from a wrong location.hauke2009-03-191-1/+1
| | | | | | | Fixes bug #4618 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14948 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] Use wildcards to copy grub stage files, will cover both i386-pc and ↵jow2009-01-101-3/+3
| | | | | | i386-openwrt directory names git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13963 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] fix grub installation on target images, regression caused by ↵jow2009-01-081-3/+3
| | | | | | multi-libc support git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13936 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Use VBoxManage instead of obsolete vditool to generate VirtualBox images.cyrus2009-01-022-4/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13821 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add support for creating VMware vmdk images #1317florian2008-11-092-1/+22
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13158 3c298f89-4303-0410-b956-a3cf2f4a3e73
* x86: don't attempt to compile grub on darwinnbd2008-06-282-4/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11599 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix x86 image build order (fixes #3317)nbd2008-06-041-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11359 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix typoflorian2008-05-301-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11300 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add virtualbox images to x86 (#3475)florian2008-05-302-0/+28
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11298 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix image generation on x86kaloz2008-03-171-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10610 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make the image filenames a bit shorternbd2007-11-101-4/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9533 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fixed generation of iso imagesblogic2007-10-141-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9317 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move grub menu.lst to the right placenbd2007-10-092-1/+16
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9216 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move grub to package/nbd2007-10-095-4586/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9212 3c298f89-4303-0410-b956-a3cf2f4a3e73
* added generation of x86 livecds, from #2391blogic2007-10-082-1/+16
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9191 3c298f89-4303-0410-b956-a3cf2f4a3e73
* changed the timeout for grub to load the menu from 10 secs to 2 secsblogic2007-09-161-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8815 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fixes menuconfig selection of grub for x86 targetsblogic2007-09-091-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8713 3c298f89-4303-0410-b956-a3cf2f4a3e73
* strip the kernel version suffix from target directories, except for brcm-2.4 ↵nbd2007-09-066-0/+4745
(the -2.4 will be included in the board name here). CONFIG_LINUX_<ver>_<board> becomes CONFIG_TARGET_<board>, same for profiles. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8653 3c298f89-4303-0410-b956-a3cf2f4a3e73