diff options
author | Rod Whitby <rod@whitby.id.au> | 2007-01-23 04:53:40 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2007-01-23 04:53:40 +0000 |
commit | a26989c694c564990b73d96270654f44c2fc8d3c (patch) | |
tree | 9cf076d1c796c51a7dbd6962e6b1711bb3a969c5 /packages/linux | |
parent | 2d96dd3d8722c5260740717f70c442b4cb445aac (diff) |
ixp4xx-kernel: Remove superfluous anonymous python check on SLUGOS_IMAGESEX.
Diffstat (limited to 'packages/linux')
-rw-r--r-- | packages/linux/ixp4xx-kernel.inc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/packages/linux/ixp4xx-kernel.inc b/packages/linux/ixp4xx-kernel.inc index 0d869bb165..28b8d3b559 100644 --- a/packages/linux/ixp4xx-kernel.inc +++ b/packages/linux/ixp4xx-kernel.inc @@ -382,14 +382,3 @@ do_deploy() { } addtask deploy before do_build after do_compile - -python () { - # check for MACHINE_ARCH - if not set then we don't know what to build, - # also sanity check the SLUGOS_IMAGESEX - sex = bb.data.getVar("SLUGOS_IMAGESEX", d, 1) - if sex != 'little-endian' and sex != 'big-endian': - raise bb.parse.SkipPackage("slugos kernels require SLUGOS_IMAGESEX") - suffix = bb.data.getVar("MACHINE_ARCH", d, 1) - if suffix == '': - raise bb.parse.SkipPackage("slugos kernels require MACHINE_ARCH") -} |