Changeset 39
- Timestamp:
- 01/26/08 13:29:06 (4 years ago)
- Files:
-
- openembedded/build/conf/local-zipit2.conf (modified) (3 diffs)
- openembedded/build/README (modified) (1 diff)
- openembedded/Makefile (modified) (3 diffs)
- openembedded/README-zipit (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openembedded/build/conf/local-zipit2.conf
r20 r39 1 1 MACHINE = "zipit2" 2 2 DISTRO = "zipit2-1.x" 3 UserBuildRootDir = "${HOME}/OE-projects/"3 UserBuildRootDir = ${BBUSERROOT} 4 4 5 5 BBFILES := "${UserBuildRootDir}/zipitZ2BBfiles/*/*.bb \ … … 28 28 ENABLE_BINARY_LOCALE_GENERATION = "0" 29 29 ASSUME_PROVIDED += "mpfr-native" 30 IMAGE_FSTYPES = " jffs2tar"30 IMAGE_FSTYPES = "tar" 31 31 PARALLEL_MAKE = "-j 4" 32 32 BBINCLUDELOGS = "yes" … … 35 35 # this allows you to have multiple local-*.conf files and 36 36 # to switch between projects easily. 37 TMPDIR = "${ TOPDIR}/tmp.zipitZ2"37 TMPDIR = "${BBUSERROOT}/tmp.zipitZ2" 38 38 openembedded/build/README
r21 r39 2 2 First, make a symlink inside conf dir for local.conf 3 3 so that it points to the projects' local-*.conf file. 4 There is also README about local.conf files. 4 5 5 6 Next, you will need to symlink in the distro and machine openembedded/Makefile
r36 r39 24 24 BBVER = "1.8" 25 25 26 TARGET_DIR=$(shell pwd) /27 export PATH:=$(PATH):$(TARGET_DIR) bitbake/bin/28 export BBPATH:=$(TARGET_DIR) build/:$(TARGET_DIR)org.openembedded.dev26 TARGET_DIR=$(shell pwd) 27 export PATH:=$(PATH):$(TARGET_DIR)/bitbake/bin/ 28 export BBPATH:=$(TARGET_DIR)/build/:$(TARGET_DIR)/org.openembedded.dev 29 29 30 30 ################################################################## … … 34 34 @echo "OpenZipit has been installed. Edit your .bash_profile to" 35 35 @echo "add the BBPATH statement and add to your PATH. Then, " 36 @echo "type 'bitbake b ase-image' to build a basic command line"36 @echo "type 'bitbake bootstrap-image' to build a basic command line" 37 37 @echo "system to boot the zipit Z2 into Linux." 38 38 @echo … … 85 85 @echo " !!! You must add these statements to your .bash_profile !!!" 86 86 @echo 87 @echo "export PATH=\$$PATH:${TARGET_DIR}bitbake/bin/" 88 @echo "export BBPATH=${TARGET_DIR}build/:${TARGET_DIR}org.openembedded.dev" 87 @echo "export PATH=\$$PATH:${TARGET_DIR}/bitbake/bin/" 88 @echo "export BBPATH=${TARGET_DIR}/build/:${TARGET_DIR}/org.openembedded.dev" 89 @echo "if you want to use local-zipit2.conf you need to add also this:" 90 @echo "export BBUSERROOT=${TARGET_DIR}" 89 91 @echo 90 92 openembedded/README-zipit
r38 r39 1 1 This is the OpenEmbedded filesystem builder for the Zipit 2 Z2. Look for READMEs that are in the build dir for more 2 Z2. 3 4 !!!IMPORTANT!!! 5 6 Look for READMEs that are in the build dir for more 3 7 info before you proceed reading this file. 4 8 … … 24 28 25 29 1) To build the OE distro for the Z2, just enter the command: 26 'bitbake b ase-image'. When it finishes, look in the30 'bitbake bootstrap-image'. When it finishes, look in the 27 31 ${TMPDIR}/deploy/images for your bootstrap-XXXX.tar file. 28 32 That is the filesystem that you would copy onto the ext3 … … 43 47 and to identify where your SD card media reader is located. 44 48 45
