linux-toolchain

Find/Replace htmlentities using the standard linux toolchain?

Is there a way I can do something like the following using the standard linux toolchain? Let's say the source at example.com/index.php is: Hello, & world! " How can I do something like this... curl -s http://example.com/index.php | htmlentities ...that would print the following: Hello, & world! " Using only the standar...

Cross compiling a kernel module

I'm trying to cross compile a helloworld kernel (2.6.x) module for ARM architecture on my intel x86 host. The codesourcery tool chain for ARM is located at: /home/ravi/workspace/hawk/arm-2009q3 The kernel source is located at :/home/ravi/workspace/hawk/linux-omapl1 My Makefile: ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi obj-m := H...