diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-04-13 09:19:18 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-04-13 09:19:18 +0000 |
commit | af3799500cf3e964b5f990e9dad05ad9563a079c (patch) | |
tree | 9c7d0d9889c80cedbfd141ff2e66a501034c3300 /linux/handhelds-sa_2.4.19-rmk6-pxa1-hh36.8.oe | |
parent | 120bf454b10261268f8ac35da0fc5f9e6da90361 (diff) |
handhelds-kernel-priority.patch
BKrev: 407bb096rRD4Q_cJoHtZbUEqSZXFbw
Diffstat (limited to 'linux/handhelds-sa_2.4.19-rmk6-pxa1-hh36.8.oe')
-rw-r--r-- | linux/handhelds-sa_2.4.19-rmk6-pxa1-hh36.8.oe | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/linux/handhelds-sa_2.4.19-rmk6-pxa1-hh36.8.oe b/linux/handhelds-sa_2.4.19-rmk6-pxa1-hh36.8.oe index 2b6c75b7c9..f7254a5dbb 100644 --- a/linux/handhelds-sa_2.4.19-rmk6-pxa1-hh36.8.oe +++ b/linux/handhelds-sa_2.4.19-rmk6-pxa1-hh36.8.oe @@ -16,6 +16,15 @@ inherit kernel KERNEL_ARCH = "arm" +K_MAJOR = "${@oe.data.getVar('PV',d).split('-')[0].split('.')[0]}" +K_MINOR = "${@oe.data.getVar('PV',d).split('-')[0].split('.')[1]}" +K_MICRO = "${@oe.data.getVar('PV',d).split('-')[0].split('.')[2]}" +RMKV = "${@oe.data.getVar('PV',d).split('-')[1].split('rmk')[-1]}" +PXAV = "${@oe.data.getVar('PV',d).split('-')[2].split('pxa')[-1]}" +HHV = "${@oe.data.getVar('PV',d).split('-')[3].split('hh')[-1]}" + +KERNEL_PRIORITY = "${@"%d" % (int(oe.data.getVar('K_MAJOR',d,1)) * 100000000 + int(oe.data.getVar('K_MINOR',d,1)) * 1000000 + int(oe.data.getVar('K_MICRO',d,1)) * 10000 + int(oe.data.getVar('RMKV',d,1)) * 1000 + int(oe.data.getVar('PXAV',d,1)) * 100 + float(oe.data.getVar('HHV',d,1)))}" + do_configure_prepend() { oe_runmake ipaqsa_config (echo N; echo m; echo N) | oe_runmake oldconfig |