Robert Fonda schrieb: > Let's first clear the air. > > > > I'm a moron. So be nice. > > > > I am attempting to compile Busybox 1.14.3. I am getting the following errors > consistently: > > > > miscutils/ionice.c: In function 'ioprio_set': > > miscutils/ionice.c:16: error: 'SYS_ioprio_set' undeclared (first use in this > function) > > miscutils/ionice.c:16: error: (Each undeclared identifier is reported only > once > > miscutils/ionice.c:16: error: for each function it appears in.) > > miscutils/ionice.c: In function 'ioprio_get': > > miscutils/ionice.c:21: error: 'SYS_ioprio_get' undeclared (first use in this > function) > > make[1]: *** [miscutils/ionice.o] Error 1 > > make: *** [miscutils] Error 2 > > > > This is happening when I attempt the following: > > > > make defconfig > > make > > > > Everything compiles just fine up to this point. I am using the 4.2 ARM tool > chain. I CAN compile busybox 1.0 with out any problems using the same > procedure described above. > > >
hi Robert, SYS_ioprio_set is a syscall that has been added with 2.6.13. if you use a newer kernel than your toolchain is old, you need to update. else you can disable this applet (add acpid also). re, wh _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
