diff options
author | Mike Westerhof <mwester@dls.net> | 2009-04-30 16:17:50 -0500 |
---|---|---|
committer | Mike Westerhof <mwester@dls.net> | 2009-04-30 16:17:50 -0500 |
commit | 32810dfbe24c83d692a093658e23ab27e3585de4 (patch) | |
tree | 0baf71ff6690a18356d3f16a258af38e0b115cea /recipes | |
parent | 0de958f8a3f363b79f7e3096663ff2ef37fe207f (diff) |
SlugOS: arm-kernel-shim - ensure that the rootfs is mounted with "noatime" option
by passing that option in on the command line.
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/arm-kernel-shim/arm-kernel-shim_1.5.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/arm-kernel-shim/arm-kernel-shim_1.5.bb b/recipes/arm-kernel-shim/arm-kernel-shim_1.5.bb index c6761c99b2..5e2bbb83cc 100644 --- a/recipes/arm-kernel-shim/arm-kernel-shim_1.5.bb +++ b/recipes/arm-kernel-shim/arm-kernel-shim_1.5.bb @@ -3,7 +3,7 @@ SECTION = "" PRIORITY = "optional" HOMEPAGE = "http://wiki.buici.com/twiki/bin/view/Main/ApexBootloader" LICENSE = "GPL" -PR = "r2" +PR = "r3" COMPATIBLE_MACHINE = "(ixp4xx|nslu2|fsg3)" @@ -17,9 +17,9 @@ S = ${WORKDIR}/arm-kernel-shim-${PV} CMDLINE_CONSOLE = "console=${@bb.data.getVar("KERNEL_CONSOLE",d,1) or "ttyS0"}" -CMDLINE_ROOT_DSMG600 = "root=/dev/mtdblock2 rootfstype=jffs2 rw init=/linuxrc" -CMDLINE_ROOT_NAS100D = "root=/dev/mtdblock2 rootfstype=jffs2 rw init=/linuxrc" -CMDLINE_ROOT_NSLU2 = "root=/dev/mtdblock4 rootfstype=jffs2 rw init=/linuxrc" +CMDLINE_ROOT_DSMG600 = "root=/dev/mtdblock2 rootfstype=jffs2 rootflags=noatime rw init=/linuxrc" +CMDLINE_ROOT_NAS100D = "root=/dev/mtdblock2 rootfstype=jffs2 rootflags=noatime rw init=/linuxrc" +CMDLINE_ROOT_NSLU2 = "root=/dev/mtdblock4 rootfstype=jffs2 rootflags=noatime rw init=/linuxrc" # CMDLINE is passed correctly on the Freecom FSG-3 from the bootloader. EXTRA_OEMAKE_append = " CROSS_COMPILE=${CROSS_DIR}/bin/${HOST_PREFIX}" |