diff options
author | Raymond Danks <raymond@edanks.com> | 2006-05-31 23:18:20 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-31 23:18:20 +0000 |
commit | a37558949698152bb853c520dba87d40fc74e77f (patch) | |
tree | ed24ca0c1bc4dd0c4c405d18214f0510de1e0215 /conf | |
parent | cce9638455be863b406573020215590d72e4d70e (diff) |
bootimg.bbclass - This creates a bootable image using syslinux, your kernel and an optional initrd
syslinux.bbclass - This creates a configuration file suitable for use with syslinux.
db1200.conf geodelx.conf - add db1200 and geodelx machine configurations.
Forgot the mt-add on these in the last attempt...
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/db1200.conf | 15 | ||||
-rw-r--r-- | conf/machine/geodelx.conf | 7 |
2 files changed, 22 insertions, 0 deletions
diff --git a/conf/machine/db1200.conf b/conf/machine/db1200.conf new file mode 100644 index 0000000000..d46636cccf --- /dev/null +++ b/conf/machine/db1200.conf @@ -0,0 +1,15 @@ +# Alchemy db1200 + +TARGET_ARCH = "mipsel" +IPKG_ARCHS = "${TARGET_ARCH} ${MACHINE}" + +PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}depmod:module-init-tools-cross" + +SERIAL_CONSOLE="/dev/ttyS0 115200 vt100" +USE_VT="0" + +TARGET_CC_ARCH="-march=mips32" + +FLASH_OFFSET="0xBC000000" +#EXTRA_IMAGECMD_jffs2 = "--little-endian --eraseblock=0x10000 -q" +EXTRA_IMAGECMD_jffs2 = "--little-endian --pad=0x3C00000 -q" diff --git a/conf/machine/geodelx.conf b/conf/machine/geodelx.conf new file mode 100644 index 0000000000..841f4a8418 --- /dev/null +++ b/conf/machine/geodelx.conf @@ -0,0 +1,7 @@ +TARGET_ARCH = "i486" + +PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}depmod:module-init-tools-cross" + +PREFERRED_PROVIDER_virtual/kernel="linux-geodelx" + +SELECTED_OPTIMIZATION_glibc := "${@'${SELECTED_OPTIMIZATION}'.replace('-fomit-frame-pointer', '')}" |