diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-11-18 09:48:40 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-11-18 09:48:40 +0000 |
commit | c916c07dc3e6597f63dc5486daaab03f6cb2b49a (patch) | |
tree | fdcc2968d89eb8460ee7ee1e314de9e3e5303fb8 /packages/linux/linux-openzaurus.inc | |
parent | e661da73478c651edde4f8a043ab61b2b43857eb (diff) | |
parent | f9fa013a67614490729c3a4a514637ec54bf4430 (diff) |
merge of '764fab90ce78632168aaaa389123bbc7beacc0af'
and '9ef42c4cea604726d2f11a3693579baae9320074'
Diffstat (limited to 'packages/linux/linux-openzaurus.inc')
-rw-r--r-- | packages/linux/linux-openzaurus.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/linux/linux-openzaurus.inc b/packages/linux/linux-openzaurus.inc index 2b245e2eaa..95c5af6d1a 100644 --- a/packages/linux/linux-openzaurus.inc +++ b/packages/linux/linux-openzaurus.inc @@ -16,7 +16,7 @@ CHSRC = "http://oz.drigon.com/patches" # Compensate for sucky bootloader on all Sharp Zaurus models # FILES_kernel-image = "" -ALLOW_EMPTY = 1 +ALLOW_EMPTY = "1" EXTRA_OEMAKE = "OPENZAURUS_RELEASE=-${DISTRO_VERSION}" COMPATIBLE_HOST = "(arm|i.86).*-linux" @@ -32,8 +32,8 @@ CMDLINE_DEBUG = '${@base_conditional("DISTRO_TYPE", "release", "quiet", "debug", ############################################################## # Configure memory/ramdisk split for collie # -export mem = ${@bb.data.getVar("COLLIE_MEMORY_SIZE",d,1) or "32"} -export rd = ${@bb.data.getVar("COLLIE_RAMDISK_SIZE",d,1) or "32"} +export mem = '${@bb.data.getVar("COLLIE_MEMORY_SIZE",d,1) or "32"}' +export rd = '${@bb.data.getVar("COLLIE_RAMDISK_SIZE",d,1) or "32"}' CMDLINE_MEM_collie = "mem=${mem}M" CMDLINE_ROTATE_spitz = "fbcon=rotate:1" @@ -45,7 +45,7 @@ CMDLINE = "${CMDLINE_CON} ${CMDLINE_ROOT} ${CMDLINE_MEM} ${CMDLINE_ROTATE} ${CMD ############################################################### # Enable or disable ELPP via local.conf - default is "no" # -ENABLE_ELPP = ${@bb.data.getVar("OZ_KERNEL_ENABLE_ELPP",d,1) or "no"} +ENABLE_ELPP = '${@bb.data.getVar("OZ_KERNEL_ENABLE_ELPP",d,1) or "no"}' ############################################################### # module configs specific to this kernel |