Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
Index: Makefile
===================================================================
--- Makefile	(nonexistent)
+++ Makefile	(revision 5)
@@ -0,0 +1,42 @@
+#
+# Linux Frame Buffer Device Configuration
+#
+
+BISON =		bison -d
+FLEX =		flex
+INSTALL =	install
+RM =		rm -f
+
+All:		fbset
+
+
+fbset:		fbset.o modes.tab.o lex.yy.o
+
+fbset.o:	fbset.c fbset.h fb.h
+modes.tab.o:	modes.tab.c fbset.h fb.h
+lex.yy.o:	lex.yy.c fbset.h modes.tab.h
+
+lex.yy.c:	modes.l
+		$(FLEX) modes.l
+
+modes.tab.h:	modes.tab.c
+
+modes.tab.c:	modes.y
+		$(BISON) modes.y
+
+install:	fbset
+		if [ -f /sbin/fbset ]; then rm /sbin/fbset; fi
+		$(INSTALL) fbset /usr/sbin
+		$(INSTALL) fbset.8 /usr/share/man/man8
+		$(INSTALL) fb.modes.5 /usr/share/man/man5
+#		if [ ! -c /dev/fb0 ]; then mknod /dev/fb0 c 29 0; fi
+#		if [ ! -c /dev/fb1 ]; then mknod /dev/fb1 c 29 32; fi
+#		if [ ! -c /dev/fb2 ]; then mknod /dev/fb2 c 29 64; fi
+#		if [ ! -c /dev/fb3 ]; then mknod /dev/fb3 c 29 96; fi
+#		if [ ! -c /dev/fb4 ]; then mknod /dev/fb4 c 29 128; fi
+#		if [ ! -c /dev/fb5 ]; then mknod /dev/fb5 c 29 160; fi
+#		if [ ! -c /dev/fb6 ]; then mknod /dev/fb6 c 29 192; fi
+#		if [ ! -c /dev/fb7 ]; then mknod /dev/fb7 c 29 224; fi
+
+clean:
+		$(RM) *.o fbset lex.yy.c modes.tab.c modes.tab.h
Index: .
===================================================================
--- .	(nonexistent)
+++ .	(revision 5)

Property changes on: .
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~