OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
arch
/
m68k
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:18 AM
rwxr-xr-x
📁
68000
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📄
Kconfig
3.22 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
Kconfig.bus
2.12 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
Kconfig.cpu
12.51 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
Kconfig.debug
1.37 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
Kconfig.devices
4.38 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
Kconfig.machine
12.47 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
Makefile
5.15 KB
11/01/2022 04:52:05 PM
rw-r--r--
📁
amiga
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
apollo
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
atari
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
bvme6000
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
coldfire
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
emu
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
fpsp040
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
hp300
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
ifpsp060
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
include
-
11/17/2022 06:42:15 AM
rwxr-xr-x
📄
install.sh
1.24 KB
01/28/2018 09:20:33 PM
rw-r--r--
📁
kernel
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
lib
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
mac
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
math-emu
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
mm
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
mvme147
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
mvme16x
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
q40
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
sun3
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
sun3x
-
11/17/2022 06:42:20 AM
rwxr-xr-x
📁
tools
-
11/17/2022 06:42:15 AM
rwxr-xr-x
Editing: install.sh
Close
#!/bin/sh # # This file is subject to the terms and conditions of the GNU General Public # License. See the file "COPYING" in the main directory of this archive # for more details. # # Copyright (C) 1995 by Linus Torvalds # # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin # # "make install" script for m68k architecture # # Arguments: # $1 - kernel version # $2 - kernel image file # $3 - kernel map file # $4 - default install path (blank if root directory) # verify () { if [ ! -f "$1" ]; then echo "" 1>&2 echo " *** Missing file: $1" 1>&2 echo ' *** You need to run "make" before "make install".' 1>&2 echo "" 1>&2 exit 1 fi } # Make sure the files actually exist verify "$2" verify "$3" # User may have a custom install script if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi # Default install - same as make zlilo if [ -f $4/vmlinuz ]; then mv $4/vmlinuz $4/vmlinuz.old fi if [ -f $4/System.map ]; then mv $4/System.map $4/System.old fi cat $2 > $4/vmlinuz cp $3 $4/System.map sync