diff options
-rw-r--r-- | packages/images/fso-console-image.bb | 2 | ||||
-rw-r--r-- | packages/images/fso-illume-image.bb | 5 | ||||
-rw-r--r-- | packages/images/fso-image.bb | 5 |
3 files changed, 7 insertions, 5 deletions
diff --git a/packages/images/fso-console-image.bb b/packages/images/fso-console-image.bb index 04d9d23afc..6bfab9dca9 100644 --- a/packages/images/fso-console-image.bb +++ b/packages/images/fso-console-image.bb @@ -1,5 +1,5 @@ #------------------------------------------------------ -# FSO compliant Console Image Recipe +# FSO-compliant Console Image Recipe #------------------------------------------------------ require fso-image.bb diff --git a/packages/images/fso-illume-image.bb b/packages/images/fso-illume-image.bb index 45af87b7f5..577e738030 100644 --- a/packages/images/fso-illume-image.bb +++ b/packages/images/fso-illume-image.bb @@ -1,11 +1,11 @@ #------------------------------------------------------ -# FSO compliant Illume Image Recipe +# FSO-compliant Illume Image Recipe #------------------------------------------------------ require fso-image.bb PV = "1.1" -PR = "r0" +PR = "r1" # no languages for now IMAGE_LINGUAS = "" @@ -62,7 +62,6 @@ AUDIO_INSTALL_append_om-gta02 = "\ # python PYTHON_INSTALL = "\ - task-python-efl \ python-codecs \ python-gst \ " diff --git a/packages/images/fso-image.bb b/packages/images/fso-image.bb index a59460e8a7..f1b4ffffc7 100644 --- a/packages/images/fso-image.bb +++ b/packages/images/fso-image.bb @@ -3,7 +3,7 @@ #------------------------------------------------------ PV = "1.1" -PR = "r1" +PR = "r2" # no languages for now IMAGE_LINGUAS = "" @@ -133,6 +133,9 @@ fso_rootfs_postprocess() { echo "nameserver 208.67.220.220" >> ./etc/resolv.conf # remove autostart of gspd (if installed), we have fso-gpsd and this conflicts rm -f ./etc/init.d/gpsd + # silence printk + echo "echo 0 0 0 0 >/proc/sys/kernel/printk" >./etc/profile.d/printk.sh + chmod a+rx ./etc/profile.d/printk.sh # back on track cd $curdir } |